commit 13ddc7c961c0ddaf88131a3b3fe255cc6b71010c parent 63f7e6e1ab24a8d3246cd97cfe826eecb1016405 Author: gearsix <gearsix@tuta.io> Date: Mon, 24 Jul 2023 21:48:47 +0100 fix to Building example commands Diffstat:
M | README.md | | | 8 | ++++++-- |
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md @@ -114,11 +114,15 @@ To run *sya-pyqt*, you don't need to build a binary everytime, you can just run **POSIX (Linux, MacOS, BSD)** - pyinstaller ./src/sya-pyqt.py -F --windowed --add-data "./doc/HELP.md:." --add-data "./res/folder.png:." --add-data "./res/file.png:." --add-data "./sya.png:." --add-data "$FFMPEG:." --add-data "$YT-DLP:." + FFMPEG="<filepath to ffmpeg>" \ + YTDLP="<filepath to yt-dlp>" \ + pyinstaller ./src/sya-pyqt.py -F --windowed --add-data "./doc/HELP.md:." --add-data "./res/folder.png:." --add-data "./res/file.png:." --add-data "./res/sya.png:." --add-data "$FFMPEG:." --add-data "$YTDLP:." **Windows** - pyinstaller ./sya-pyqt.py -F --windowed --add-data ".\doc\HELP.md;." --add-data ".\res\folder.png;." --add-data ".\res\file.png;." --add-data ".\res\sya.png;." --add-data "$FFMPEG;." --add-data "$YT-DLP;." + $FFMPEG="<filepath to ffmpeg.exe>" + $YT_DLP="<filepath to yt-dlp.exe>" + pyinstaller .\src\sya-pyqt.py -F --windowed --add-data ".\doc\HELP.md;." --add-data ".\res\folder.png;." --add-data ".\res\file.png;." --add-data ".\res\sya.png;." --add-data "$FFMPEG;." --add-data "$YT_DLP;." **IMPORTANT NOTES**