You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When attempting to use METIS I am facing this error:
I installed METIS in Ubuntu 20.04 by:
git clone [email protected]:KarypisLab/GKlib.git
git clone https://github.com/KarypisLab/METIS.git
cd GKlib
make config cc=gcc prefix=~/local
make
make install
cd ../METIS
make config shared=1 cc=gcc prefix=~/local i64=1 r64=1
make
make install
My cmake is version 3.2. The runtime error arises when using the python metis package.
I could not figure out a way to solve this issue, any assistance would be greatly appreciated. Thank you!
The text was updated successfully, but these errors were encountered:
ghost
changed the title
OSError: /home/ubuntu/local/lib/libmetis.so: undefined symbol: gk_jbufs
OSError: libmetis.so: undefined symbol: gk_jbufs
Feb 2, 2024
It looks like GKlib isn't being linked properly. I would try running one of the executables that metis provides - if that also has an error then it means there was something wrong during build. I'm not familiar with how the _dlopen prints its error, but it looks like there is only a single symbol missing - are you able to get a verbose output?
When attempting to use
METIS
I am facing this error:I installed METIS in Ubuntu 20.04 by:
My
cmake
is version 3.2. The runtime error arises when using the pythonmetis
package.I could not figure out a way to solve this issue, any assistance would be greatly appreciated. Thank you!
The text was updated successfully, but these errors were encountered: