Download - file_access_.exe
- Python
- Eel
- Pyinstaller
- Work with Google Chrome (!!! must be installed)
- Bootstrap 4 (https://getbootstrap.com/)
link: https://github.com/ChrisKnott/Eel#building-a-distributable-binary
If you want to package your app into a program that can be run on a computer without a Python interpreter installed, you should use pyinstaller.
- Install pyinstaller
pip install pyinstaller
- In your app's folder, run
python -m eel [your_main_script] [your_web_folder]
(for example, you might runpython -m eel hello.py web
) - This will create a new folder
dist/
- Check the contents of this folder for extra modules that pyinstaller is incorrectly including
- Exclude these using the flag
--exclude module_name
. For example, you might runpython -m eel file_access.py web --exclude win32com --exclude numpy --exclude cryptography
- When you are happy that your app is working correctly, add
--onefile --noconsole
flags to build a single executable file