Ich möchte pyenv und anaconda auf CentOS7 installieren.
Installieren Sie zunächst die erforderlichen Bibliotheken. (Installieren Sie die folgenden Bibliotheken, die nicht installiert sind.)
Terminal
$ sudo yum -y install zlib-devel bzip2 bzip2-devel readline-devel sqlite sqlite-devel openssl-devel
Terminal
$ git clone https://github.com/yyuu/pyenv.git ~/.pyenv
$ echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bash_profile
$ echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bash_profile
$ echo 'eval "$(pyenv init -)"' >> ~/.bash_profile
$ source ~/.bash_profile
Sie haben jetzt pyenv installiert.
Überprüfen Sie PATH vorerst
Terminal
$ which pyenv
~/.pyenv/bin/pyenv
Terminal
$ pyenv install -l | grep anaconda
(Kürzung)
anaconda3-4.2.0
anaconda3-4.3.0
anaconda3-4.3.1
$ pyenv install anaconda3-4.3.1
$ pyenv global anaconda3-4.3.1
$ python -V
Python 3.6.0 :: Anaconda 4.3.1 (64-bit)
Die Installation von Anaconda ist abgeschlossen. Dann legen Sie es in Ihren Pfad.
Terminal
$ echo 'PATH="$PYENV_ROOT/versions/anaconda3-4.3.1/bin/:$PATH"' >> ~/.bash_profile
$ source ~/.bash_profile
Endlich Conda und Anaconda Updates
Terminal
$ conda update conda
$ conda update anaconda
Recommended Posts