Answers for "linux create virtualenv"

2

linux create virtualenv

# Install virtualenv using pip3
sudo pip3 install virtualenv

# Create virtualenv
virtualenv venv
virtualenv -p python3 venv # To create virtualenv with python3 for example
virtualenv -p /usr/bin/python2.7 # To create virtualenv with Python interpreter of your choice

# Activate virtualenv
source venv/bin/activate

# Desactivate venv
deactivate
Posted by: Guest on May-06-2021
43

python virtual environment

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

source env/bin/activate

#all this is on same directory
Posted by: Guest on May-06-2021
-1

how to workon virtual environment in linux

# If any of the other dont work try
<env name>\bin\activate
Posted by: Guest on July-27-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language