Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,32 @@ To run on **Linux**, you will also need to install `tkinter` separately like so:

To compile to an executable so you can run this on a system without python installed.

_Windows OS_

To create aleapp.exe, run:

```
pyinstaller --onefile aleapp.spec
pyinstaller \scripts\pyinstaller\aleapp.spec
```

To create aleappGUI.exe, run:

```
pyinstaller --onefile --noconsole aleappGUI.spec
pyinstaller \scripts\pyinstaller\aleappGUI.spec
```

_macOS_

To create aleapp, run:

```
pyinstaller /scripts/pyinstaller/aleapp_macos.spec
```

To create aleappGUI.app, run:

```
pyinstaller /scripts/pyinstaller/aleappGUI_macos.spec
```

## Usage
Expand Down
3 changes: 2 additions & 1 deletion scripts/pyinstaller/aleapp.spec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ a = Analysis(['..\\..\\aleapp.py'],
'polyline',
'simplekml',
'xlsxwriter',
'xmltodict'
'xmltodict',
'zoneinfo',
],
hookspath=['.\\'],
runtime_hooks=[],
Expand Down
3 changes: 2 additions & 1 deletion scripts/pyinstaller/aleappGUI.spec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ a = Analysis(['..\\..\\aleappGUI.py'],
'polyline',
'simplekml',
'xlsxwriter',
'xmltodict'
'xmltodict',
'zoneinfo',
],
hookspath=['.\\'],
runtime_hooks=[],
Expand Down
1 change: 1 addition & 0 deletions scripts/pyinstaller/aleappGUI_macOS.spec
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ a = Analysis(
'polyline',
'xmltodict',
'xlsxwriter',
'zoneinfo',
],
hookspath=[],
hooksconfig={},
Expand Down
1 change: 1 addition & 0 deletions scripts/pyinstaller/aleapp_macOS.spec
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ a = Analysis(
'polyline',
'xmltodict',
'xlsxwriter',
'zoneinfo',
],
hookspath=[],
hooksconfig={},
Expand Down
Loading