-
Notifications
You must be signed in to change notification settings - Fork 64
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
undefined symbol: _ZdlPvm, version Qt_5 #341
Comments
I meet the same issue on Ubuntu 18.04.6 LTS... |
It is probably conflicting with a qt system installation. It shouldn't happen because it should first look for the bundled qt libraries. |
i met the same issue on ubuntu 22.04.3 LTS, then meet : |
The issue can be caused by the interaction of the user system, the specific version of Qt against which libmeshlab-common.so was compiled, and what specific version of Qt is referenced at runtime. This is likely complicated by path issues, despite My solution was to stand up a container with the requirements, and just build PyMeshLab myself and install it, e.g.
and I can |
hi I ran into the same issue on Ubuntu 20.04.6 LTS after install the pymeshlab I
I got
qt5 installed is |
I ran into the same error Running the following before my python script fixed it:
A critical detail: |
@ArmanMaesumi that fix does help, however I get different behavior depending on whether I'm trying to import pymeshlab from a Jupyter notebook or from a python script i.e. I still cant import it in the notebook |
@Xallt It seems like there are some relevant threads: jupyter/notebook#1290 (comment) Note that, the solution in that thread suggests overriding the environment variable, whereas my suggestion concatenates to it. You can try both and see if it works |
Just today, I suddenly got same error And somehow I fix it by doing:
Because I found out that pyqt and pyqt5 is different and when I list my installed package I cant find pyqt5 |
IT WORKS! |
System information: Ubuntu 22.04
Recreation steps:
pip3 install pymeshlab
python
import pymeshlab
I then receive the following error:
/sketch2prototype/stable-dreamfusion/venv_stable-dreamfusion/lib/python3.11/site-packages/pymeshlab/lib/libmeshlab-common.so: undefined symbol: _ZdlPvm, version Qt_5
Not sure why this is happening. I tried installing pymesh lab on my Mac (M1 Ventura 13.4.1) and it worked. My guess is that it is a system issue but not sure where the issue lies. Would appreciate any first steps to debug. Thanks
The text was updated successfully, but these errors were encountered: