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
We experience issues due to different versions of the shared libraries. One setting allows one to work with DIVAnd, while other R libraries fail. The other setting allows the opposite.
How to reproduce?
Setting 1
Install Julia: curl -fsSL https://install.julialang.org | sh
Now we can try to load another library, for example ncdf4
> library("ncdf4")
Error:packageornamespaceloadfailedfor ‘ncdf4’ in dyn.load(file, DLLpath=DLLpath, ...):unabletoloadsharedobject'/home/ctroupin/R/x86_64-pc-linux-gnu-library/4.3/ncdf4/libs/ncdf4.so':/home/ctroupin/.julia/juliaup/julia-1.10.1+0.x64.linux.gnu/lib/julia/libcurl.so.4.8.0:version `CURL_OPENSSL_4' not found (required by /usr/lib/x86_64-linux-gnu/libnetcdf.so.19)``
The text was updated successfully, but these errors were encountered:
Summary
We experience issues due to different versions of the shared libraries. One setting allows one to work with
DIVAnd
, while otherR
libraries fail. The other setting allows the opposite.How to reproduce?
Setting 1
curl -fsSL https://install.julialang.org | sh
R
:The last command should give an error:
Setting 2
Before starting the
R
session we set the environment variable:The previous commands should not work:
Issue
Now we can try to load another library, for example
ncdf4
The text was updated successfully, but these errors were encountered: