Re: [PyInstaller] Missing Attribute (Really annoying)

2019-08-14 Thread ronin
Hi, Sorry for late response. In my case, missing attribute is also a problem about imports. Library is imported but its submodules are not present. The easiest solution is, if there is any missing attributes in library it needs to be specified like hidden import. (pysunspec library had this

[PyInstaller] Re: Missing Attribute (Really annoying)

2019-08-14 Thread ronin
Hi, Did you solve problem or you have the same problem. Every library that contains missing attribute needs to be specified as hidden import, there is no limitation. If you are facing with the same problem i can help. Also there is some other libraries that can solve your problem like

Re: [PyInstaller] Missing Attribute (Really annoying)

2019-07-12 Thread ronin
Thanks 珞. I somehow manage to get over my problem by adding sth. in hooks and hidden import. Sorry my bad.  -- 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] Missing Attribute (Really annoying)

2019-07-12 Thread ronin
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