You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
315 B
13 lines
315 B
#!/usr/bin/env bash |
|
set -e |
|
|
|
cd /opt/otb_cloud || exit 1 |
|
|
|
python3 -m venv venv |
|
source venv/bin/activate |
|
pip install --upgrade pip |
|
pip install -r requirements.txt |
|
|
|
echo "===== venv ready =====" |
|
echo "===== activate with: source /opt/otb_cloud/venv/bin/activate =====" |
|
echo "===== script completed successfully ====="
|
|
|