Create Virtual Environment
Learn all about Create Virtual Environment in this comprehensive tutorial.
- •It is suggested to have a dedicated virtual environment for each Django project, and one way to manage a virtual environment is venv, which is included in Python.
- •In the next chapter you will finally learn how to install Django!
Virtual Environment
It is suggested to have a dedicated virtual environment for each Django project, and one way to manage a virtual environment is venv, which is included in Python.
The name of the virtual environment is your choice, in this tutorial we will call it myworld.
Type the following in the command prompt, remember to navigate to where you want to create your project:
This will set up a virtual environment, and create a folder named "myworld" with subfolders and files, like this:
Then you have to activate the environment, by typing this command:
Once the environment is activated, you will see this result in the command prompt:
Install Django
In the next chapter you will finally learn how to install Django!
Module quiz
2 questionsWhich of the following is true about Create Virtual Environment?
What is the most common pitfall when working with Create Virtual Environment?
Answer all questions to submit.