Hi,

PyInstaller is supposed to guess, from your script and what it imports (and what is imported from what you import, and so on) all the relevant modules to get.  It doesn't always work, some imports are not straightforward, some are dynamically handled by importlib and PyInstaller cannot guess that.  That's why you can specify additional modules to import to help PyInstaller.  But are you sure your problem is a hidden import?  A missing attribute doesn't sound like the problem.  Could you post your traceback here?


HTH,


Vincent

On 7/12/2019 9:21 AM, ronin wrote:

I have a script which connects for a certain device and get some data to be calculated under some specifications; which runs perfectly. When i run this script with pyinstaller to make dist file it does not work. Actually there is just one attribute that is not defined. Is there a problem with imported libraries which also import other libraries ?
--
You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to pyinstaller+unsubscr...@googlegroups.com <mailto:pyinstaller+unsubscr...@googlegroups.com>. To post to this group, send email to pyinstaller@googlegroups.com <mailto:pyinstaller@googlegroups.com>.
Visit this group at https://groups.google.com/group/pyinstaller.
To view this discussion on the web visit https://groups.google.com/d/msgid/pyinstaller/74493ec8-fe99-4111-a24d-c0feded5a93c%40googlegroups.com <https://groups.google.com/d/msgid/pyinstaller/74493ec8-fe99-4111-a24d-c0feded5a93c%40googlegroups.com?utm_medium=email&utm_source=footer>.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups 
"PyInstaller" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to pyinstaller+unsubscr...@googlegroups.com.
To post to this group, send email to pyinstaller@googlegroups.com.
Visit this group at https://groups.google.com/group/pyinstaller.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/pyinstaller/27c7bcd2-0497-e159-0833-482881261e07%40gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to