virtualenv

$ mkdir myproject
$ cd myproject
$ python3 -m venv venv
New python executable in venv/bin/python
Installing setuptools, pip............done.

Now, whenever you want to work on a project, you only have to activate the corresponding environment. On OS X and Linux, do the following:python

$ . venv/bin/activate

Windows:spa

$ venv\scripts\activate

And if you want to go back to the real world, use the following command:code

$ deactivate
相關文章
相關標籤/搜索