What files can I delete after creating .exe file with pyinstaller in order not to damage the application?
The directory contains:
.idea/
__pycache__/
build/
dist/
venv/
main.py
main.spec
...as also shown in this graphical listing:
What files can I delete after creating .exe file with pyinstaller in order not to damage the application?
The directory contains:
.idea/
__pycache__/
build/
dist/
venv/
main.py
main.spec
...as also shown in this graphical listing:
You can delete build and dist, after you got the exe out. __pycache__ is created by python every time you run the application.