Answers for "how to create a env in python"

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
0

how to use virtual environment python

python3 -m pip install --user virtualenv
Posted by: Guest on April-10-2020
0

create an env in python

if you configured the PATH and PATHEXT variables for your Python installation:

c:>python -m venv c:pathtomyenv
Posted by: Guest on April-02-2021

Python Answers by Framework

Browse Popular Code Answers by Language