Pyinstaller Error Running Script With Pyzmq Dependency
This is my first StackOverflow post! I am running into issues creating a pyinstaller(v4.2) executable with a pyzmq (v22.0.2) dependency. I created an executable by running 'pyinsta
Solution 1:
I had the same problem and found this solution
Downgrade to 21.0.0 using pip install pyzmq==21.0.0
then you can run pyinstaller again and it will run perfectly fine.
Post a Comment for "Pyinstaller Error Running Script With Pyzmq Dependency"