-
Notifications
You must be signed in to change notification settings - Fork 5
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
Got this message running it on my Mac M1 #1
Comments
Understanding the Error: Conflicting Qt Binaries: You seem to have two separate Qt installations on your system. One is likely from Anaconda (/Users/omidesmaeeli/anaconda3/lib/libQt5Core.5.15.2.dylib), and the other might be a system-wide installation or one from a different source (/Users/omidesmaeeli/anaconda3/lib/python3.11/site-packages/PyQt5/Qt5/lib/QtCore.framework/Versions/5/QtCore). Identify Conflicting Qt: Set the environment variable DYLD_PRINT_LIBRARIES=1. Option 1: Use Anaconda Qt: If you're unsure about the conflicting Qt or if the above steps don't resolve the issue, try reinstalling PyQt in your Anaconda environment using conda install pyqt. This might reinstall necessary libraries and fix the conflict. Consider using tools like pyinstaller or similar to create standalone executables for your program. These tools can bundle necessary libraries within the executable, avoiding conflicts with system-wide installations. |
is this still an issue @omidesml ? |
Successfully installed DreamCreator-0.0.3 PyQt5-Qt5-5.15.13 matplotlib-3.8.2 nh3-0.2.17 numpy-1.26.3 pandas-2.2.0 pkginfo-1.10.0 pywin32-ctypes-0.2.2 readme-renderer-43.0 rfc3986-2.0.0 scipy-1.12.0 twine-5.0.0 watchdog-3.0.0
(base) omidesmaeeli@dhcp-206-12-143-165 ~ % python3.11
Python 3.11.8 (main, Feb 26 2024, 15:36:12) [Clang 14.0.6 ] on darwin
Type "help", "copyright", "credits" or "license" for more information.
objc[10634]: Class QMacAutoReleasePoolTracker is implemented in both /Users/omidesmaeeli/anaconda3/lib/libQt5Core.5.15.2.dylib (0x10450d340) and /Users/omidesmaeeli/anaconda3/lib/python3.11/site-packages/PyQt5/Qt5/lib/QtCore.framework/Versions/5/QtCore (0x10b045230). One of the two will be used. Which one is undefined.
objc[10634]: Class QT_ROOT_LEVEL_POOL__THESE_OBJECTS_WILL_BE_RELEASED_WHEN_QAPP_GOES_OUT_OF_SCOPE is implemented in both /Users/omidesmaeeli/anaconda3/lib/libQt5Core.5.15.2.dylib (0x10450d3b8) and /Users/omidesmaeeli/anaconda3/lib/python3.11/site-packages/PyQt5/Qt5/lib/QtCore.framework/Versions/5/QtCore (0x10b0452a8). One of the two will be used. Which one is undefined.
objc[10634]: Class KeyValueObserver is implemented in both /Users/omidesmaeeli/anaconda3/lib/libQt5Core.5.15.2.dylib (0x10450d3e0) and /Users/omidesmaeeli/anaconda3/lib/python3.11/site-packages/PyQt5/Qt5/lib/QtCore.framework/Versions/5/QtCore (0x10b0452d0). One of the two will be used. Which one is undefined.
objc[10634]: Class RunLoopModeTracker is implemented in both /Users/omidesmaeeli/anaconda3/lib/libQt5Core.5.15.2.dylib (0x10450d430) and /Users/omidesmaeeli/anaconda3/lib/python3.11/site-packages/PyQt5/Qt5/lib/QtCore.framework/Versions/5/QtCore (0x10b045320). One of the two will be used. Which one is undefined.
QObject::moveToThread: Current thread (0x6000033fc140) is not the object's thread (0x6000033f1250).
Cannot move to target thread (0x6000033fc140)
You might be loading two sets of Qt binaries into the same process. Check that all plugins are compiled against the right Qt binaries. Export DYLD_PRINT_LIBRARIES=1 and check that only one set of binaries are being loaded.
qt.qpa.plugin: Could not load the Qt platform plugin "cocoa" in "" even though it was found.
This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.
Available platform plugins are: cocoa, minimal, offscreen, webgl.
zsh: abort python3.11
The text was updated successfully, but these errors were encountered: