- Home
- Course Detail
regularpython@gmail.com
You are now watching:
What is virtual environment and how is it useful to us / of What is virtual environment and how is it useful to us
Step1: Install virtual environment
pip install virtualenv
Step2: Create virtual environment
py -m venv env
Step3: Activate Virtual environment
.\env\Scripts\activate
Step4: Check location
where python
Step5: Install a module
pip install django
Step6: Deactivate venv
deactivate