November 2017
Intermediate to advanced
226 pages
5h 59m
English
Now you can learn to set up a virtual environment that will help to set up an isolated scripting environment. This will help us to keep the dependencies required by different projects in different locations. Also, it helps to keep the global site-packages clean and separate from project dependencies:
$ pip install virtualenv
$ virtualenv --version
$ mkdir new-project-folder $ cd new-project-folder $ virtualenv new-project
This will create a folder in the current directory with a name new-project.
If you want to ...
Read now
Unlock full access