mirror of
https://github.com/brentvollebregt/auto-py-to-exe.git
synced 2026-04-26 04:05:49 +03:00
[GH-ISSUE #448] Missing Module #357
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Nathan3-14 on GitHub (Dec 20, 2023).
Original GitHub issue: https://github.com/brentvollebregt/auto-py-to-exe/issues/448
Interesting missing module error
Error
I converted a very basic python project using tkinter and it gave the following error

And I was intereseted why it needed a module (ip address) despite it not being used in the code.
Code
test.py:
@github-actions[bot] commented on GitHub (Dec 20, 2023):
👋 Hi, just a reminder that if you haven't read the help post yet, give it a read to see if your issue is covered in it and make sure to follow the debugging section.
Also please note, as stated in the README, if your issue is only associated with your application and not auto-py-to-exe itself, please do not create an issue in this repository - instead, comment on the help post, video or create a new discussion.
@brentvollebregt commented on GitHub (Dec 21, 2023):
This was fixed in PyInstaller 5.12 back in June - see more here: https://github.com/pyinstaller/pyinstaller/issues/7692
@Nathan3-14 commented on GitHub (Dec 21, 2023):
Cool thanks.
I updated my python and it seemed to work fine.