conda – gdalinfo: error while loading shared libraries: libtiledb.so.2.2: cannot open shared object file: No such file or directory
In a clean install of conda following these steps, but having issues. I have done in several linux instances and Macbook pc this same procedure flawless before, now testing on a new chromebook:
STEPS:
Download conda from anaconda site arm64 version
Steps as follows:
curl -O https://repo.anaconda.com/archive/Anaconda3-2021.11-Linux-aarch64.sh
bash Anaconda3-2021.11-Linux-aarch64.sh
conda create --name gdal
conda activate gdal
conda install -c conda-forge gdal
Finished without issues:
(gdal) neavilag@penguin:~/anaconda3/lib$ which gdalinfo
/home/neavilag/anaconda3/envs/gdal/bin/gdalinfo
Running gdalinfo –version gives error:
(gdal) neavilag@penguin:~/anaconda3/lib$ gdalinfo --version
gdalinfo: error while loading shared libraries: libtiledb.so.2.2: cannot open shared object file: No such file or directory
the file mentioned is listed in the libs folder or anaconda3 installation:
(gdal) neavilag@penguin:~/anaconda3/lib$ ls -haltr libtiledb*
-rwxrwxr-x 2 neavilag neavilag 5.0M Jun 25 2021 libtiledb.so.2.2
lrwxrwxrwx 1 neavilag neavilag 16 Apr 17 10:40 libtiledb.so -> libtiledb.so.2.2
Python seems intalled and env activated as I can check version:
(gdal) neavilag@penguin:~/anaconda3/lib$ python --version
Python 3.7.12
(gdal) neavilag@penguin:~/anaconda3/lib$ which python
/home/neavilag/anaconda3/envs/gdal/bin/python
Read more here: Source link