MacOS
$ brew install pyenv
$ brew install pyenv-virtualenv
CentOS
$ sudo su - user
$ curl -L https://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash
Eine Meldung wie "Fügen Sie Folgendes zu ~ / .bash_profile
~ hinzu, falls erforderlich
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"
$ cd path/to/repo
$ pyenv install 3.5.2 #Sie können auch aus der Liste auswählen, indem Sie pyenv install where ausführen
$ pyenv virtualenv 3.5.2 virtualenv-name # virtualenv-Name ist beliebig
$ pyenv local virtualenv-name
$ cd path/to/repo
$ pip install pip-package #Individuelle Installation
$ pip install -r requirements.txt #Masseninstallation
$ cd path/to/repo
$ pip freeze > requirements.txt
Recommended Posts