diff options
author | Nao Pross <np@0hm.ch> | 2020-10-16 19:38:12 +0200 |
---|---|---|
committer | Nao Pross <np@0hm.ch> | 2020-10-16 19:38:12 +0200 |
commit | aa7c9529bf9bc5e94a2133923b4605ab86462cdf (patch) | |
tree | 17e4c3f88f2c3d8ed8f099104ef434ddd1fe6b80 /README.md | |
parent | Add image to README (diff) | |
download | Muddle-aa7c9529bf9bc5e94a2133923b4605ab86462cdf.tar.gz Muddle-aa7c9529bf9bc5e94a2133923b4605ab86462cdf.zip |
Write how to build an executable in README
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -18,3 +18,14 @@ muddle $ ./muddle --gui ``` The code is a bit garbage, as I hacked it toghether in one morning, though I've tried to clean it up a bit. + +## Compilation / Release +To create an executable you need PyInstaller, you can get it with +``` +$ pip3 install pyinstaller +``` +And then run +``` +$ pyinstaller --onefile muddle +``` +The computer will think for a while, and then once its done there will be a single executable `dist/muddle`. |