Icui18n: cannot open shared object file: no such file or directory

I tried to get a shadow and follow the procedure. However, when I tried to run ./canopy , it gave this error:

Unable to load icui18n library "Unable to load icui18n library: (icui18n: cannot open shared object file: there is no such file or directory)".

I can’t sudo, because I use a university supercomputer account, there is no permission for this. Any tips?

+4
source share
2 answers

You just need a copy of the ICU installed on the system where you are trying to run canopy on. You can do this by installing it through the OS package manager or by receiving a copy in your home directory and tell canopy where to find it using LD_LIBRARY_PATH .

You can get pre-compiled copies of ICU from your download page ( http://site.icu-project.org/download/51 ), and after installation you will do something like:

 LD_LIBRARY_PATH="~/path/to/icu/lib" ./canopy 
+2
source

Sorry for the late reply (we are tracking the enthought tag, use it to get our attention faster).

These Unable to load library icui18n warning messages are false and should not affect the usability of Canopy. We disabled these warnings in version 1.2, which comes out in the first week of January. If you see problems, send the message again.

+2
source

Source: https://habr.com/ru/post/1488776/


All Articles