Setting up a virtual environment for your Django Project
codesource.io › setting-up-a-virtual-environmentJul 28, 2020 · Now, let’s go forward into creating a Django project in the new virtual environment. Create a Django Project. Firstly, install Django here. The installed Django package will only be active in this virtual environment and no other place on your PC. pip install Django. You can check installed packages by creating a requirements.txt file. This file contains a list of all the installed packages and their respective versions.