Files
RSSingle/Documentation/Development.md
ElectronicsArchiver 2668c1d29a Formatted Command
2022-06-25 14:32:08 -04:00

448 B
Raw Blame History

Development


Compiling

Commands are run from within the/Source/folder.


pyinstaller --onefile rssingle.py

Old Versions

docker run              \
    --rm                \
    --volume $PWD:/app  \
    python:3.8-buster   \
    /bin/bash -c        \
    "cd /app; pip3 install -r requirements.txt; pyinstaller --onefile rssingle.py"

You will find the binary in /dist/.