Django Virtual Environment SetupThe virtual environment is an environment which is used by Django to execute an application. It is recommended to create and execute a Django application in a separate environment. Python provides a tool virtualenv to create an isolated Python environment. We will use this tool to create a virtual environment for our Django application. To set up a virtual environment, use the following steps. 1. Install Package First, install python3-venv package by using the following command. 2. Create a Directory After it, change directory to the newly created directory by using the cd djangoenv. 3. Create Virtual Environment 4. Activate Virtual Environment After creating a virtual environment, activate it by using the following command. Till here, the virtual environment has started. Now, we can use it to create Django application. Install DjangoInstall Django in the virtual environment. To install Django, use the following command. Django has installed successfully. Now we can create a new project and build new applications in the separate environment. Next TopicAdmin Interface |