Answers for "how to create environment in python3.7"

9

create a venv

# Create the virtual environment.
python -m venv venv

# Activate the env.
venv\Scripts\activate.bat
Posted by: Guest on June-16-2020
1

python env

python3 -m venv tutorial-env
tutorial-env\Scripts\activate.bat (window)
source tutorial-env/bin/activate (linux)
Posted by: Guest on September-11-2020
0

how to create environment in python3.7

# by runnin this command you can directly create python environment in with python3.7 version
python3.7 -m venv <venv_name>
Posted by: Guest on December-23-2020

Code answers related to "how to create environment in python3.7"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language