ImportError: libicui18n.so.58: cannot open shared object file: No such file or directory #3245
-
Ubuntu 22.04
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Looks like the version of your globally installed libicu changed since you've set up the conda environment. Try deinstalling and reinstalling pyicu in the environment. As a general rule, I wouldn't recommend mixing Ubuntu's libicu with a installation of pyicu from package managers like pip or conda. Use You can continue the import with |
Beta Was this translation helpful? Give feedback.
-
Thank you. After |
Beta Was this translation helpful? Give feedback.
Looks like the version of your globally installed libicu changed since you've set up the conda environment. Try deinstalling and reinstalling pyicu in the environment.
As a general rule, I wouldn't recommend mixing Ubuntu's libicu with a installation of pyicu from package managers like pip or conda. Use
python3-icu
which comes with Ubuntu. The drawback is that you have to allow access to global Python packages from your virtual environment.You can continue the import with
nominatim import --continue load-data
at the point where you are. Usually you want to verify that your entire tooclhain works by importing a small extract like Monaco first. You can still do that. Create a second projec…