You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2. Run `Windows6.1-KB2533623-x86.msu` and follow the installation wizard.
290
+
291
+
3. Restart the system when prompted.
292
+
293
+
Once installed, proceed with PyInstaller and Inno Setup as described above.
294
+
280
295
#### MacOS
281
296
282
297
Run the following command
@@ -290,6 +305,16 @@ To change the icon of the `.app` file follow the instructions here https://apple
290
305
291
306
#### Linux
292
307
308
+
##### Prerequisites
309
+
310
+
Install the required FUSE library (needed for PyInstaller single-file executables):
311
+
312
+
```bash
313
+
sudo apt install libfuse2
314
+
```
315
+
316
+
##### Generate Standard Installer
317
+
293
318
Run the following command
294
319
295
320
```
@@ -304,6 +329,33 @@ Two folders will be created: build and dist. Inside dist you'll find the executa
304
329
305
330
If it doesn't run, make sure it has execute permissions. In case it doesn't run `chmod +x TempicoSoftware` and then try again. The executable file could be used to create a Desktop entry so it can be lauched as an application (for example in Gnome, an icon could be assigned)
306
331
332
+
##### Generate Optimized Installer (< 100 MB)
333
+
334
+
To reduce installer size, exclude unused scipy modules:
0 commit comments