Récemment, j'utilise python avec pyenv, mais il était difficile de savoir comment utiliser pyenv / pyenv-virtualenv à chaque fois, alors prenez note.
Installation du package
$ brew install pyenv
$ brew install pyenv-virtualenv
Ajouter des paramètres
$ echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bash_profile
$ echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bash_profile
$ pyenv install --list
$ pyenv install 3.5.1
$ pyenv version
$ pyenv versions
$ pyenv global 3.5.1
$ cd PROJECT_DIR
$ pyenv local 2.7.11
$ pyenv version
Python 2.7.11
$ cd ..
$ pyenv version
Python 3.5.1
$ pyenv virtualenv 2.7.11 sandbox27
$ pyenv version
Python 3.5.1
$ pyenv virtualenv sandbox35
$ pyenv virtualenvs
$ pyenv activate <name>
$ pyenv deactivate
Recommended Posts