LoginSignup
0
0

More than 5 years have passed since last update.

python with pyenv and venv

Last updated at Posted at 2017-09-16

how to setup with python env

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
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0