diff --git a/README.md b/README.md index cde92e6..b9870c1 100644 --- a/README.md +++ b/README.md @@ -64,19 +64,19 @@ A quick file setup and run test can be performed running files in [scripts/Setup ### GUI Installation -A rudimentary graphical user interface (GUI) can be installed using the gui_setup.bat and gui_setup.sh scripts for Windows and Linux, respectively (which download and run `./gui/qt_window.py`): +A rudimentary graphical user interface (GUI) can be installed using the gui_setup.bat and gui_setup.sh scripts for Windows and Linux, respectively (which download and run `./gui/qt_window.py`, run these commands in a directory without any whitespaces): Windows (PowerShell) ```powershell -Invoke-WebRequest https://raw.githubusercontent.com/Protein-Engineering-Framework/PyPEF/refs/heads/main/gui_setup.bat -OutFile gui_setup.bat -Invoke-WebRequest https://raw.githubusercontent.com/Protein-Engineering-Framework/PyPEF/refs/heads/main/gui/qt_window.py -OutFile ( New-Item -Path ".\gui\qt_window.py" -Force ) +Invoke-WebRequest https://raw.githubusercontent.com/Protein-Engineering-Framework/PyPEF/refs/heads/master/gui_setup.bat -OutFile gui_setup.bat +Invoke-WebRequest https://raw.githubusercontent.com/Protein-Engineering-Framework/PyPEF/refs/heads/master/gui/qt_window.py -OutFile ( New-Item -Path ".\gui\qt_window.py" -Force ) .\gui_setup.bat ``` Linux ```bash -wget https://raw.githubusercontent.com/Protein-Engineering-Framework/PyPEF/refs/heads/main/gui_setup.sh -O gui_setup.sh -mkdir -p ./gui/ && wget https://raw.githubusercontent.com/Protein-Engineering-Framework/PyPEF/refs/heads/main/gui/qt_window.py -O ./gui/qt_window.py +wget https://raw.githubusercontent.com/Protein-Engineering-Framework/PyPEF/refs/heads/master/gui_setup.sh -O gui_setup.sh +mkdir -p ./gui/ && wget https://raw.githubusercontent.com/Protein-Engineering-Framework/PyPEF/refs/heads/master/gui/qt_window.py -O ./gui/qt_window.py chmod a+x ./gui_setup.sh && ./gui_setup.sh ``` diff --git a/gui_setup.bat b/gui_setup.bat index 8ee709d..b00ae75 100644 --- a/gui_setup.bat +++ b/gui_setup.bat @@ -31,7 +31,7 @@ if "%true%"=="0" ( echo Did not find any Python version. Python will be installed locally in the next step... set /P AREYOUSURE="Y" ) else ( - echo A suitable Python version was found, no local download and Python installtion should be necessary... + echo A suitable Python version was found, no local download and Python installation should be necessary... set /P AREYOUSURE="Install and use local Python version (Y/[N]) (downloads Python installer and installs Python locally in the current working directory)? " )