1# Make sure you have virtualenv set up on the directory your working on.
2# To set up virtualenv, first download it (If you haven't yet)
3# Do it by typing in this on the terminal:
4 pip install virtualenv
5
6# Then activate the virtual environment by doing these steps on the terminal
7python -m venv venv # Or
8python3 -m venv venv
9
10# Then do this to activate it:
11cd myproject/venv/Scripts/activate