Error installing pip pyicu

后端 未结 8 1943
独厮守ぢ
独厮守ぢ 2020-12-24 13:51

I have been trying to install musicbrainz server on my mac and there is a step where I have to install pip pyicu. I keep getting this error:

Collecting pyicu         


        
8条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-24 14:48

    I was trying to install in RHEL and I installed from the tar.gz file. Below are the commands:

        /usr/local/bin/pip3 install -U setuptools
        /usr/local/bin/pip3 install -U wheel
        wget http://download.icu-project.org/files/icu4c/50.1.2/icu4c-50_1_2-src.tgz
        tar -zxvf icu4c-50_1_2-src.tgz
        cd icu
        cd source
        sudo ./configure --prefix=/usr
        sudo make
        sudo make install
        icu-config --version
        /usr/local/bin/pip3 install PyICU==2.0.6
    

提交回复
热议问题