Skip to content
Merged
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
34 changes: 32 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,46 @@ 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
```

_Linux_

To create aleapp, run:

```
pyinstaller scripts/pyinstaller/aleapp_Linux.spec
```

To create aleappGUI, run:

```
pyinstaller scripts/pyinstaller/aleappGUI_Linux.spec
```

## Usage
Expand Down
Loading