Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
venv-build-env.sh 150 B
Newer Older
Ayush Singh's avatar
Ayush Singh committed
#!/bin/sh
if [ ! -e ./.venv ]; then
   python3 -m venv .venv
fi
source ./.venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt