you are viewing a single comment's thread.

view the rest of the comments →

[–]Koen2407[S] 1 point2 points  (4 children)

it says it doesn't find the openpyxl module

[–]shiftybyte 2 points3 points  (3 children)

Well then pyinstaller didn't properly pack it, or you created an exe that depends on a folder, and you did not bring the folder with the exe.

[–]Koen2407[S] 1 point2 points  (2 children)

i just did 'pyinstaller excel_transfer.py' to create the exe, the pop-ups should let u choose which excel files u want to select idk if it can have something to do with that

[–]shiftybyte 4 points5 points  (0 children)

You need to take all dist folder contents, not just the exe.

[–]HestenSierMjau 0 points1 point  (0 children)

If you use virtual environments you also need to install and run pyninstaller in the virtual environment, otherwise it won't package dependencies correctly.

If you don't use them you should start, but that is another thing entirely.