6 lines
146 B
Bash
6 lines
146 B
Bash
# Set the root of the virtual environment
|
|
export VIRTUAL_ENV=$PWD/.venv
|
|
|
|
# Add the venv's bin folder to the start of your PATH
|
|
PATH_add .venv/bin
|