18 lines
434 B
Markdown
18 lines
434 B
Markdown
## How to build this app:
|
|
`python -m venv anime_env`
|
|
|
|
`source anime_env/bin/activate`
|
|
|
|
`pip install pyinstaller`
|
|
|
|
`pyinstaller build.spec --clean`
|
|
|
|
Then run a binary:
|
|
`./dist/AnimeTracker/AnimeTracker`
|
|
|
|
## How to update the binary file
|
|
`rm -rf ~/Applications/AnimeTracker/_internal && cp -r ~/Documents/programs/python/anime-tracker/dist/AnimeTracker ~/Applications/`
|
|
|
|
## How to run this app without building:
|
|
`python frontend.py`
|