setup python version with pyenv
$ mkdir test $ cd !$ $ pyenv local 3.6.2 $ python -V
setup virtualenv with vnev
$ python -m venv . or $ virtualenv . $ source bin/activate . . . $ source bin/deactivate
Recommended Posts