Spaces:
Paused
Paused
File size: 266 Bytes
bce56aa | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/bash
script="$0"
basename="$(dirname "$script")"
echo "Script name $script resides in $basename directory."
# go to the sdk directory first
cd "${basename}"
python3 -m venv venv
. venv/bin/activate
pip install --upgrade pip
pip3 install -r requirements.txt
|