0

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:

Graphical directory listing

Charles Duffy
  • 280,126
  • 43
  • 390
  • 441
FeoJun
  • 103
  • 1
  • 14
  • BTW, please try to include data in textual form -- screenshots shouldn't be relied on in questions for the reasons given in [Why not upload images of code/errors when asking a question?](https://meta.stackoverflow.com/a/285557/14122). I've edited towards that effect here. – Charles Duffy Apr 15 '21 at 15:49

1 Answers1

1

You can delete build and dist, after you got the exe out. __pycache__ is created by python every time you run the application.

Charles Duffy
  • 280,126
  • 43
  • 390
  • 441
ThePsyjo
  • 59
  • 1
  • 3