pyenv
pyenv-virtualenv
--Utilisation de zsh avec OSX --Utiliser homebrew
pyenv --clone de github
git clone git://github.com/yyuu/pyenv.git ~/.pyenv
--Ajouté à ./zshrc
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.zshrc
echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.zshrc
echo 'eval "$(pyenv init -)"' >> ~/.zshrc
pyenv-virtualenv --Installez virtualenv à partir de homebrew
brew install pyenv-virtualenv
--Vérifiez la version installable
pyenv install -l
--Installation (ce qui suit est pour python2.7.10)
pyenv install 2.7.10
pyenv rehash
--Vérifier les versions disponibles (environnement où * mark est utilisé)
pyenv versions
--Préparez un environnement d'alias avec la même version de python en utilisant virtualenv (créez 2.7.10_sand ci-dessous)
pyenv virtualenv 2.7.10 2.7.10_sand
--Définissez l'environnement pour chaque répertoire (ce qui suit est défini sur 2.7.10_sand)
pyenv local 2.7.10_sand
Recommended Posts