CadQuery / CQ-editor

CadQuery GUI editor based on PyQT
Apache License 2.0
723 stars 111 forks source link

Fails to Run on pop OS #436

Closed alexsaavedraa closed 2 months ago

alexsaavedraa commented 2 months ago

I solved this issue, but since it took some time, I wanted to help out anyone else who had the issue: pop-os:~/cq-editor$ ./run.sh MESA-LOADER: failed to open i965: /usr/lib/dri/i965_dri.so: cannot open shared object file: No such file or directory (search paths /usr/lib/x86_64-linux-gnu/dri:\$${ORIGIN}/dri:/usr/lib/dri, suffix _dri) failed to load driver: i965 MESA-LOADER: failed to open i965: /usr/lib/dri/i965_dri.so: cannot open shared object file: No such file or directory (search paths /usr/lib/x86_64-linux-gnu/dri:\$${ORIGIN}/dri:/usr/lib/dri, suffix _dri) failed to load driver: i965 0.00s - Debugger warning: It seems that frozen modules are being used, which may 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off 0.00s - to python to disable frozen modules. 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. MESA-LOADER: failed to open i965: /usr/lib/dri/i965_dri.so: cannot open shared object file: No such file or directory (search paths /usr/lib/x86_64-linux-gnu/dri:\$${ORIGIN}/dri:/usr/lib/dri, suffix _dri) failed to load driver: i965 MESA-LOADER: failed to open i965: /usr/lib/dri/i965_dri.so: cannot open shared object file: No such file or directory (search paths /usr/lib/x86_64-linux-gnu/dri:\$${ORIGIN}/dri:/usr/lib/dri, suffix _dri) failed to load driver: i965

which i was able to fix by changing my run.sh to LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libdrm_amdgpu.so.1 exec bin/cq-editor

I am on POP os, with an intel 10th gen i5, and no gpu. Noteably, I still get the errors, but cadquerry runs fine after the fix.

I got my answer from this thread about freecad: https://bbs.archlinux.org/viewtopic.php?id=293565

and unsuccessfully tried solutions in this thread: https://askubuntu.com/questions/1451610/mesa-loader-failed-to-open-swrast-ubuntu-20-04

adam-urbanczyk commented 2 months ago

Thanks for reporting!