Skip to content

Commit 6c855a8

Browse files
committed
Update README
No whitespaces allowed for PowerShell paths until now
1 parent 6b3fb4a commit 6c855a8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,19 +64,19 @@ A quick file setup and run test can be performed running files in [scripts/Setup
6464
<a name="gui-installation"></a>
6565
### GUI Installation
6666

67-
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`):
67+
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):
6868

6969
Windows (PowerShell)
7070
```powershell
71-
Invoke-WebRequest https://raw.githubusercontent.com/Protein-Engineering-Framework/PyPEF/refs/heads/main/gui_setup.bat -OutFile gui_setup.bat
72-
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 )
71+
Invoke-WebRequest https://raw.githubusercontent.com/Protein-Engineering-Framework/PyPEF/refs/heads/master/gui_setup.bat -OutFile gui_setup.bat
72+
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 )
7373
.\gui_setup.bat
7474
```
7575

7676
Linux
7777
```bash
78-
wget https://raw.githubusercontent.com/Protein-Engineering-Framework/PyPEF/refs/heads/main/gui_setup.sh -O gui_setup.sh
79-
mkdir -p ./gui/ && wget https://raw.githubusercontent.com/Protein-Engineering-Framework/PyPEF/refs/heads/main/gui/qt_window.py -O ./gui/qt_window.py
78+
wget https://raw.githubusercontent.com/Protein-Engineering-Framework/PyPEF/refs/heads/master/gui_setup.sh -O gui_setup.sh
79+
mkdir -p ./gui/ && wget https://raw.githubusercontent.com/Protein-Engineering-Framework/PyPEF/refs/heads/master/gui/qt_window.py -O ./gui/qt_window.py
8080
chmod a+x ./gui_setup.sh && ./gui_setup.sh
8181
```
8282

gui_setup.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ if "%true%"=="0" (
3131
echo Did not find any Python version. Python will be installed locally in the next step...
3232
set /P AREYOUSURE="Y"
3333
) else (
34-
echo A suitable Python version was found, no local download and Python installtion should be necessary...
34+
echo A suitable Python version was found, no local download and Python installation should be necessary...
3535
set /P AREYOUSURE="Install and use local Python version (Y/[N]) (downloads Python installer and installs Python locally in the current working directory)? "
3636
)
3737

0 commit comments

Comments
 (0)