April 2019
Intermediate to advanced
426 pages
11h 13m
English
At this point, it is advisable to set up a Python virtual environment. Virtual environments allow you to manage separate package installations that you need for a particular project, isolating the packages installed in other environments.
To install the virtual environment package in your terminal window, type the following:
$ pip install virtualenv
To create a virtual environment, go to your project's directory and run virtualenv. For example, if the name of your project folder is my_project_folder, type the following:
$ cd my_project_folder$ virtualenv ...
Read now
Unlock full access