February 2018
Intermediate to advanced
456 pages
9h 56m
English
Let's go ahead and configure our development environment. The first thing we need to do is create a new virtual environment, so we can work and install the packages that we need without interfering with the global Python installation.
Our application will be called musicterminal, so we can create a virtual environment with the same name.
To create a new virtual environment, run the following command:
$ python3 -m venv musicterminal
And to activate the virtual environment, you can run the following command:
$ . musicterminal/bin/activate
Perfect! Now that we have our virtual environment set up, we can ...
Read now
Unlock full access