Skip to content

Commit

Permalink
Specify extra library path to pyinstaller (fixes #17)
Browse files Browse the repository at this point in the history
On Windows, pyinstaller was not seeing my globally installed site
packages, which included the 'yaml' module. By explicitly listing the
path, it corrects the issue with pyinstaller.

This was never version specific, but likely due to how python was
installed on my Windows environment.
  • Loading branch information
Slashbunny committed Sep 8, 2021
1 parent 3185766 commit 2563081
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build-win.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pip install pyinstaller==3.6
pyinstaller download.py -n gog-plugins-downloader --onefile
pip install pyinstaller==4.5.1
pyinstaller.exe download.py -n gog-plugins-downloader --onefile -p C:\Users\username\scoop\apps\python\current\Lib\site-packages\
COPY gog-plugins.bat dist\

0 comments on commit 2563081

Please sign in to comment.