Je voudrais installer pyenv et anaconda sur CentOS7.
Tout d'abord, installez les bibliothèques requises. (Installez les bibliothèques suivantes qui ne sont pas installées)
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
Vous avez maintenant installé pyenv.
Vérifiez PATH pour le moment
Terminal
$ which pyenv
~/.pyenv/bin/pyenv
Terminal
$ pyenv install -l | grep anaconda
(réduction)
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)
L'installation d'anaconda est terminée. Ensuite, mettez-le dans votre PATH.
Terminal
$ echo 'PATH="$PYENV_ROOT/versions/anaconda3-4.3.1/bin/:$PATH"' >> ~/.bash_profile
$ source ~/.bash_profile
Enfin les mises à jour conda et anaconda
Terminal
$ conda update conda
$ conda update anaconda
Recommended Posts