This page is a collection of common issues that one may encounter when trying to setup ISCE with anaconda. Anaconda is a powerful package manager but some incompatibilities within different libraries does creep in. This section attempts to address some of these issues:
##libjpeg.so.8 missing / incompatible Soln: The most common cause for this is that your GDAL version is not in sync with other libraries.
conda3 update gdalSoln: The most common case for this is that you dont have libgdal installed on your machine or it is outdated.
conda3 install libgdal
(or)
conda3 update libgdalSoln: Some versions of gdal have libuuid listed as a dependency by error. You can fix this by uninstalling libuuid
conda3 uninstall libuuidSoln: Set the environment variable CPL_ZIP_ENCODING=UTF-8
export CPL_ZIP_ENCODING=UTF-8