Conda.Exe: Error While Loading Shared Libraries: Libz.So.1

conda.exe: error while loading shared libraries: libz.so.1

The problem may be your /tmp is set to noexec in /etc/fstab. Verify with grep tmp /etc/fstab.

Run the installer with TMPDIR set to a directory you have write permissions to, on a file system with executable permission. i.e.:

mkdir /users/$USER/tmpconda
TMPDIR=/users/$USER/tmpconda bash Miniconda2-latest-Linux-x86_64.sh

Solution was found at Anaconda Issues 11587

A quick test of executability on a file system:

$ touch foo && chmod +x foo && ./foo
-bash: ./foo: Permission denied

noexec will cause "Permission denied" even if x is set on the file.

docker compose: Error while loading shared libraries: libz.so.1: failed to map segment from shared object: Operation not permitted

Got it solved by re-mounting the /tmp to give the volume permission to execute (it was accessible with read-only). So this solved:

sudo mount /tmp -o remount,exec

Not able to install anaconda on linux, getting error path_to_dir/conda.exe : Permisison denied

My ssd was mounted with options auto,exec,rw,user. After removing user, I was able to install the miniconda3. The comment in this stackoverflow answer gave me the solution to my problem.



Related Topics



Leave a reply



Submit