17 lines
488 B
Bash
17 lines
488 B
Bash
#!/bin/bash
|
|
#chmod +x ./venv/bin/activate
|
|
#chmod +x ./_pyren_launcher.py
|
|
## Linux ubuntu fixes uncomment next lines
|
|
#printf "Install new venv ...\n"
|
|
#Install venv if not present
|
|
#python3 -m venv ./venv
|
|
#fix qt platform plugin ubuntu "xcb"
|
|
#sudo apt-get install --reinstall libxcb-xinerama0
|
|
##
|
|
#printf "Activate venv ...\n"
|
|
#./venv/bin/activate
|
|
printf "Runs app ...\n"
|
|
#./venv/bin/python ./_pyren_launcher.py
|
|
python ./_pyren_launcher.py
|
|
#printf "Deactivate venv ..."
|
|
#./venv/bin/deactivate |