Virtual Environment
Settings up the virtual environment
Install the virtualenv library.
pip3 install virtualenv
Now navigate to the project folder
cd <projectname>
Create the virtual environment using:
python3 -m virtualenv venv
Activate the virtual environment
source venv/bin/activate