aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNao Pross <np@0hm.ch>2020-10-16 19:38:12 +0200
committerNao Pross <np@0hm.ch>2020-10-16 19:38:12 +0200
commitaa7c9529bf9bc5e94a2133923b4605ab86462cdf (patch)
tree17e4c3f88f2c3d8ed8f099104ef434ddd1fe6b80
parentAdd image to README (diff)
downloadMuddle-aa7c9529bf9bc5e94a2133923b4605ab86462cdf.tar.gz
Muddle-aa7c9529bf9bc5e94a2133923b4605ab86462cdf.zip
Write how to build an executable in README
-rw-r--r--README.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/README.md b/README.md
index 6d40873..4f45bd2 100644
--- a/README.md
+++ b/README.md
@@ -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`.