88 - [py2app](https://py2app.readthedocs.io/en/latest/install.html). |
88 - [py2app](https://py2app.readthedocs.io/en/latest/install.html). |
89 |
89 |
90 To create an app that you can launch at startup and give permanent permissions |
90 To create an app that you can launch at startup and give permanent permissions |
91 to the keychain, use |
91 to the keychain, use |
92 |
92 |
93 python3 setup.py py2app -A |
93 pip3 install pyinstaller |
|
94 pyinstaller borgend.spec |
94 |
95 |
95 The app hould be placed under `dist/`. Copy it to your `Applications` |
96 The app (`borgend.app`) should be placed under `dist/`. Copy it to your `Applications` |
96 directory, and set it up to launch on login. |
97 directory, and set it up to launch on login. |
97 |
98 |
98 If you are keen on wasting your life, you can try to run py2app without the |
99 If you are keen on wasting your life, you can try to run py2app without the |
99 `-A` option to create a standalone app that you can copy to computers without |
100 `-A` option to create a standalone app that you can copy to computers without |
100 Python installed. This will, however, most likely not work because py2app |
101 Python installed. This will, however, most likely not work because py2app |