Answers for "do i need to use virtualenv"

4

install virtualenv

pip install virtualenv

activate it by doing this:
cd myproject/Scripts/activate
Posted by: Guest on July-23-2020
2

how to create a new virtualenv

to make a new virtualenv: 
virtualenv env_name

             to activate this virtual environment:
source env_name/bin/activate (on mac and linux)
source env_name/Scripts/activate (on windows)
Posted by: Guest on July-26-2020

Code answers related to "do i need to use virtualenv"

Python Answers by Framework

Browse Popular Code Answers by Language