PyICU in python 3 error : ImportError: libicui18n.so.58

后端 未结 2 1945
谎友^
谎友^ 2021-01-29 02:51

As I\'m doing a project for non-english (Sinhala) language I need to sort the words in unicode.

So I followed answer in this question and installed PyICU in a conda envi

相关标签:
2条回答
  • 2021-01-29 02:59

    Installing pyicu from the conda-forge channel can be achieved by adding conda-forge to your channels with:

    conda config --add channels conda-forge
    

    Once the conda-forge channel has been enabled, pyicu can be installed with:

    conda install pyicu
    

    this solves the problem and it will install pyicu with dependencies

    0 讨论(0)
  • 2021-01-29 03:18

    You need to install libicu. On centos, just run

    yum install libicu
    
    0 讨论(0)
提交回复
热议问题