Remarques sur l'installation de Python sur CentOS
#Installez pyenv
git clone git://github.com/yyuu/pyenv.git .pyenv
echo 'export PATH="$HOME/.pyenv/bin:$HOME/.pyenv/shims:$PATH"' >> ~/.bash_profile
echo 'eval "$(pyenv init -)"' >> ~/.bash_profile
#Vérifiez la version Python qui peut être installée
pyenv install -l
#Installation
pyenv install 3.4.1
pyenv rehash
pyenv global 3.4.1
Recommended Posts