Reputation: 1350
I'm using Python 3.5, and I made an exe flle with pyinstaller.
I made exe file successfully, and it runs well on my computer.
But, when I run it on other computer, it has delay.
I made exe file by coding 'pyinstaller --onefile --noconsole THEFILE.py'
What's the problem?
Upvotes: 1
Views: 615
Reputation: 1288
I assume this delay (according to the OP from of 3 to 8 seconds slower) comes from the HDD which is (due to the storage technology that it uses) slower than an SSD. If you can, I would suggest either:
But keep in mind that both options require some actions, so consider first if it's really worth or if you can live with that performance.
Upvotes: 1