Answers for "python 3 activate venv"

2

how to set up python virtual environment

# install the package virtualenv
pip install virtualenv

# setup envioronment for Data engineering pipeline
virtualenv dataengineer_pipeline

# if using python >= 3.3
python -m venv dataengineer_pipeline

# start the environment in linux using 
dataengineer_pipeline/bin/activate

# or in windows
dataengineer_pipelineScriptsactivate.bat

# when you are done using the environment, type in the command below
deactivate
Posted by: Guest on July-12-2020
1

activate venv

venvScriptsactivate.bat
Posted by: Guest on July-07-2020
1

python virtual env

$ export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python2.7
Posted by: Guest on April-09-2020

Browse Popular Code Answers by Language