Answers for "create a virtual environment python2"

0

virtualenv python2

virtualenv --python=/usr/bin/python2.6 <path/to/new/virtualenv/>
Posted by: Guest on November-27-2020
4

python install library in virtualenv

# ------- How to use a virtual environment on MAC? -------- #
# Use the command line to:

 1º - Instal Python3 and pip3
  
  
 2º - Create a folder for your virtual environment:
 
  >> cd "path_to_the_place_you_want_to_locate_your_folder"
  
  >> python3 -m venv "name_of_env"
  
  
 3º - Activate this virtual environment:

  >> source "name_of_env"/bin/activate
  
  
 4º - Now you can install new things inside this environment:
  
  >> pip3 install django  # for example
Posted by: Guest on August-31-2020
3

python venv usage

python3 -m venv /path/to/new/virtual/environment
Posted by: Guest on June-06-2020

Code answers related to "create a virtual environment python2"

Browse Popular Code Answers by Language