0
Q:

python virtualenv venv

# 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_pipeline\Scripts\activate.bat

# when you are done using the environment, type in the command below
deactivate
2
python -m venv my_env
0
python3 -m venv tutorial-env
tutorial-env\Scripts\activate.bat
0
python -m venv venv
0

New to Communities?

Join the community