aboutsummaryrefslogtreecommitdiffstats
path: root/BUILDING.md
diff options
context:
space:
mode:
Diffstat (limited to 'BUILDING.md')
-rw-r--r--BUILDING.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/BUILDING.md b/BUILDING.md
index 83ffcd0..7d6d2d5 100644
--- a/BUILDING.md
+++ b/BUILDING.md
@@ -2,6 +2,7 @@
* `git pull`
* Activate virtualenv (on Windows `.venv\Scripts\activate.bat`)
+ * (MAKE SURE YOU HAVE A PYTHON 3.7 virtualenv to hand!)
* Remove `bcompiler-engine` and `datamaps` (`pip uninstall bcompiler-engine
datamaps`)
* `pip install -e .` to reinstall in developer mode
@@ -9,3 +10,12 @@
directory.
* Upload to target download site
+### Building on Windows 10 (using PowerShell)
+
+* Activate a Python 3.7 virtualenv
+ * If needed, do so with:
+ * `C:\Users\lemon\AppData\Local\Programs\Python\Python37\python.exe -m venv /tmp/datamaps-build`
+ * `C:\tmp\datamaps-build\Scripts\Activate.ps1`
+ * Ensure `pefile` and `pywin32-ctypes` are installed
+ * `pyinstaller cli.py --name "dm" --onefile`
+ * `dm.exe` is built inside `dist/` \ No newline at end of file