-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
47 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|