Closed 00krishna closed 2 years ago
Okay, I figured it out. It was a strange one. In my .bashrc
I had an environment variable, LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libcurl.so.4.6.0
. This was causing the problem. So I just commented that line out, and GridapGmsh started to work.
I actually discovered this by using the code below.
LD_LIBRARY_PATH="" LD_PRELOAD="" julia
By manually setting the environment variable before starting julia, I was able to reset those environment variables. Once I did this and entered my environment, I was able to run using GridapGmsh
. So that is how I figured this out.
I am having some trouble building or loading GridapGmsh on Ubuntu 20.04 LTS, Julia 1.8. I was trying to build the Gridap Tutorials directory, but the instantiation kept failing on
using GridapGmsh
. So I created a completely new directory and environment and tired to install GridapGmsh there, but still getting the build error below.The odd thing is that on my second computer, I was able to successfully build GridapGmsh on Ubuntu 20.04 LTS, Julia 1.7. So everything else is the same, just the julia version.
The error seems related to this issue with
libgobject-2.0.so
andundefined symbol: g_uri_ref
. Has anyone encountered this issue before? I did some google searches and it seems like it has affected people using Julia Plots, but I have not encountered that is when using Plots.Here is the full log.