-
Notifications
You must be signed in to change notification settings - Fork 17
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
libz not installing in 0.7-DEV #59
Comments
On a fresh Ubuntu 18.04 install, $ locate libz.so | grep -v home
/lib/x86_64-linux-gnu/libz.so.1
/lib/x86_64-linux-gnu/libz.so.1.2.11 and consequently julia> using Libdl
julia> dlopen("libz.so")
ERROR: could not load library "libz.so"
libz.so: cannot open shared object file: No such file or directory
Stacktrace:
[1] dlopen(::String, ::UInt32) at /usr/local/julia/julia-1.0/usr/share/julia/stdlib/v1.0/Libdl/src/Libdl.jl:97 (repeats 2 times)
[2] top-level scope at none:0
julia> dlopen("libz.so.1")
Ptr{Nothing} @0x000055bccaaccec0 Interestingly, none of the libs in sudo apt install zlib1g-dev indeed fixed this problem for me. |
@timholy Thanks for investigating that, @StephenVavasis I would encourage you both to use CodecZLib instead of this package, if it is possible, as it is more up to date and IIRC, uses BinaryBuilder and BinaryProvider to fulfill it's dependencies. Libz.jl is currently maintained as people still depend on it in older packages, but I would recommend CodecZlib.jl over this package. |
I keep getting the following error on Gitlab CI. I presume it's related to this issue.
|
I had the same issue, I installed Libz has a dependency of MAT, but I couldn't make it work
|
@DarioSarra Thanks! I put that in in the |
I fixed this issue on a fresh install of Centos 7 by making a link between .so.1 to .so: |
Libz is not installing in the latest nightly of 0.7-DEV. The error message is below. This is for Ubuntu 17.10. I am trying to install JLD2, which depends on libz.
The text was updated successfully, but these errors were encountered: