update install.sh
This commit is contained in:
parent
9f3019ab06
commit
fec547f89b
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue