Creating Python Virtual Environment in Windows and Linux
Last updated
Last updated
Last Updated : 22 Aug, 2023
A Virtual Environment is a Python environment, that is an isolated working copy of Python that allows you to work on a specific project without affecting other projects So basically it is a tool that enables multiple side-by-side installations of , one for each project.
If pip is not in your system
Then install virtualenv
Now check your installation
Create a virtual environment now,
After this command, a folder named
virtualenv_name
will be created. You can name anything to it. If you want to create a virtualenv for specific python version, type
or
Now at last we just need to activate it, using command
Now you are in a Python virtual environment You can deactivate using
If python is installed in your system, then pip comes in handy. So simple steps are: 1) Install virtualenv using
2)Now in which ever directory you are, this line below will create a virtualenv there
And here also you can name it anything. 3) Now if you are same directory then type,
You can explicitly specify your path too. Similarly like Linux you can deactivate it like