How to install and use virtual environment in Python Windows 10
You will learn in less than 3 minutes
*******************************
How to install virtual environment in python windows 10
How to use virtual environment
How to delete virtual environment
--------------------------------------------------
How to install
pip install virtualenv
How to Create
virtualenv your_virtual_environment_name
Example
virtualenv test
How to enter in Virtual Environment
test/Scripts/activate
How to exit from Virtual Environment
deactivate
How to delete Virtual Environment
In the same folder where you created virtual environment you will see folder name of your virtual environment, just delete the folder and your virtual environment will be deleted.
Thank You..
Please Like and Subscribe