-
Notifications
You must be signed in to change notification settings - Fork 225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
python3.dll is missing #1394
Comments
Please use conda packages to install PyQt5. We don't support pip packages for it right now. |
I use 'conda install -c nmearl pyqt5=5.5.0' to install PyQt5 on my mac in python3.5 env.
|
|
@ccordoba12 Oh, thank you. I had pyqt 4.11.4 installed, so I update it. |
👍 |
There is no conda package for the newest PyQt5.
|
We know there isn't. The reason is we need to support Python 2 on Windows and that's impossible to do for Qt 5.7 and newer versions. |
@mingwandroid, do you understand the implications of not having |
Seems like we're breaking PEP 384 by not having it. I expect we could easily provide it yes; taking a look now. |
As a temporary workaround, python3.dll from WinPython works for me (Python 3.6, x64). At least latest WinPython (2017/4/1) has it (maybe even the 2017/01/28, i think the older ones didn't have it). Should cover at least Python 3.5 & 3.6, both 32 & 64bit EDIT: The "Zero" versions contain Python3.dll, and are significantly smaller then the "full" packages. |
By adding python3.dll from an installer from python.org to the Anaconda install directory (same place as python35.dll), PyQt5 works. Installing using conda install qyqt does not fix the issue. |
The conda packages for Python from the last six months all include |
Thanks @scw. |
after install anaconda with python 3.7.3 (contain python3.dll),when execute"from PyQt5 import QtCore",it will show "DLL load fail" error,can anyone who can tell me why? |
when having troubles with missing dependencies, grab http://dependencywalker.com/ and have a blast ;-) |
Anaconda 4.2.0 is missing python3.dll.
After
pip install PyQt5==5.7.1
importingimport PyQt5.QtCore
fails with missing .dll message.Dependency Walker lists python3.dll as missing.
By adding
python3.dll
from an installer from python.org to the Anaconda install directory (same place as python35.dll), PyQt5 works.The text was updated successfully, but these errors were encountered: