update install.sh

This commit is contained in:
Firstname Lastname 2019-12-19 21:55:59 +01:00
parent 9f3019ab06
commit fec547f89b
3 changed files with 11 additions and 4 deletions

View File

@ -6,7 +6,8 @@ audio file and creates an xml file to listen to them as a podcast.
## Getting Started ## Getting Started
* Run install.sh under Debian based distribution. * Run install.sh under Debian based distribution.
* Run python core.py -h. To launch with GUI: python core.py -i from virtual environment. * Run runGUI.sh , or python core/core.py -i from virtual environment.
* Run python core/core.py -h from terminal from virtual environment for more CLI options.
### Prerequisites ### Prerequisites

9
install.sh Normal file → Executable file
View File

@ -28,3 +28,12 @@ source venv/bin/activate
# pip install # pip install
pip install -r requirements.txt pip install -r requirements.txt
# create runGUI.sh
rm runGUI.sh
touch runGUI.sh
echo "#!/bin/bash" > runGUI.sh
echo "" >> runGUI.sh
echo cd $(pwd) >> runGUI.sh
echo "./venv/bin/python3 ./core/core.py -i" >> runGUI.sh
chmod u+x runGUI.sh

View File

@ -1,3 +0,0 @@
#!/bin/bash
./venv/bin/python3 ./core/core.py -i