create virtualenv linux code example

Example 1: python virtual environment

python3 -m venv env
python -m virtualenv env #py2

source env/bin/activate

#all this is on same directory

Example 2: create a virtualenv python

pip install virtualenv
cd projectfolder #go to project folder
virtualenv projectname #create the folder projectname 
source projectname/bin/activate

Example 3: create virtual environment code

python3 -m venv venv

Example 4: how to workon virtual environment in linux

# If any of the other dont work try
\bin\activate

Tags: