Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pyinstaller & Pycrypto

We've recently added pycrypto to a project we've been working on and now I am unable to run the software after it is built with pyinstaller.

I have had issues with new packages in pyinstaller, but I am unable to fix this one in particular.

The errors I've gotten when trying to run the built software are as follows (sorry for the paraphrasing, it takes quite a while to build)

At first it was something like:

No package Crypto.Cipher

So I added 'Crypto' to the hiddenimports in my .spec file. Then I got,

No module named Cipher

So I changed 'Crypto' to 'Crypto.Cipher' and then I got,

Crypto.Cipher has no attribute AES

So I changed 'Crypto.Cipher' to 'Crypto.Cipher.AES' then I got

File "C:\Folder\made\by\pyinstaller\Crypto.Cipher.AES", line 49 in <module>
ImportError: cannot import name blockalgo

So I changed 'Crypto.Cipher.AES' to 'Crypto.Cipher.AES.blockalgo' and the error didn't change.

I've tried a few different configurations, but the output of the build script always says something along the lines of

ERROR: Hidden import 'blockalgo' not found.

Does anybody know how to get this to import correctly, or know a trick to get pycrypto to play nice with pyinstaller?

like image 397
horriblyUnpythonic Avatar asked Apr 23 '14 01:04

horriblyUnpythonic


People also ask

What is PyInstaller used for?

PyInstaller reads a Python script written by you. It analyzes your code to discover every other module and library your script needs in order to execute. Then it collects copies of all those files – including the active Python interpreter!

Is PyInstaller safe to use?

I have used pyinstaller for many projects and it is the easiest compiler. It is 100% safe and isn't the best, but it is again easy.

Why is the .EXE file created by PyInstaller not working?

The most common reason a PyInstaller package fails is that PyInstaller failed to bundle a required file. Such missing files fall into a few categories: Hidden or missing imports: Sometimes PyInstaller can't detect the import of a package or library, typically because it is imported dynamically.


2 Answers

According to the pyinstaller manual:

You can verify that hidden import is the problem by using Python's verbose imports flag. If the import messages say "module not found", but the warnproject.txt file has no "no module named..." message for the same module, then the problem is a hidden import.

Hidden imports are handled by hooking the module (the one doing the hidden imports) at Analysis time. Do this as follows:

  1. Create a file named hook-module.py (where module is the fully-qualified Python name, eg, hook-xml.dom.py) and place it somewhere. Remember the place as your private hooks directory.

  2. In the .spec file, pass your private hooks directory as hookspath argument to Analysis so will be searched. Example:

    a = Analysis(['myscript.py'], hookspath='/my/priv/hooks') In most cases the hook module will have only one line:

    hiddenimports = ['module1', 'module2'] When the Analysis finds this file, it will proceed exactly as though the module explicitly imported module1 and module2.

This question seems related, the answers might also be useful for you.

Finally, this report seems to contain a similar problem. The user seemingly was able to fix it by updating to pyinstaller 2.1, so you might want to give that a try if you haven't already.

like image 127
kadu Avatar answered Oct 16 '22 01:10

kadu


This Answer :

From https://stackoverflow.com/a/48408950/4355695 : Use pycryptodomex instead of pycryptodome. And @galgalesh's comment below the OP's question gave why pycrypto should no longer to be used.

pip uninstall -y pycrypto pip uninstall -y pycryptodome pip install pycryptodomex

pycryptodomex gives a clearly disambiguous Cryptodome module to replace Crypto. So, in your .py programs, replace Crypto with Cryptodome:

from Cryptodome.PublicKey import RSA

I now ran pyinstaller afresh and it worked out properly. No need to do any special hiddenimports etc. In the dist folder, there's now a clear Crpytodome folder holding all the .pyd's.

Works perfectly for me !

Use pycryptodomex instead of pycrypto and it would work !

I think it's due to python 3.6 and major evolutions of pycrypto to work with ! Then it stop working with 2.7.16 !

like image 38
HSMKU Avatar answered Oct 16 '22 03:10

HSMKU