Skip to content

Commit

Permalink
[install] install venv.
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabien-B committed Jun 14, 2024
1 parent 5a42cba commit a04674b
Showing 1 changed file with 47 additions and 1 deletion.
48 changes: 47 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,52 @@
#!/bin/bash

sudo apt-get install -f -y python3 python3-pyqt5
USE_VENV=true
BASHRC_SOURCE_VENV=false

# exit on error
set -e

for arg in "$@"
do
if [ "$arg" = "-h" ] || [ "$arg" = "--help" ]
then
echo "Usage: ./install.sh [-n|--no-venv] [-h|---help]"
echo " -n, --no-venv Do not use python virtual environment"
echo " -s, --source Add venv source in ~/.bashrc"
echo " -h, --help Print this help"
exit 0
fi

if [ "$arg" = "-n" ] || [ "$arg" = "--no-venv" ]
then
USE_VENV=false
echo "the venv will not be installed!"
fi

if [ "$arg" = "-s" ] || [ "$arg" = "--source" ]
then
BASHRC_SOURCE_VENV=true
"venv source will be added to ~/.bashrc"
fi

done


if [ "$USE_VENV" = true ]
then
sudo apt install -y python3 python3-venv
python3 setup.py
source pprzEnv/bin/activate

if [ "$BASHRC_SOURCE_VENV" = true ]
then
echo "source $(pwd)/pprzEnv/bin/activate" >> ~/.bashrc
fi

else
sudo apt-get install -f -y python3 python3-pyqt5
fi

python3 ./sw/tools/install.py


0 comments on commit a04674b

Please sign in to comment.