答案 0 :(得分:3)
pyicu 58.1刚刚在自制软件中发布,它缺少libicule,pip需要libicule才能编译pyicu。直到这个问题得到解决,你可以降级到pyicu 57.1。为此,您可以这样做:
brew remove icu4c
cd /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core
git checkout 1e62c645b2fc2d82042d9f7c364c6a246f2e11ed Formula/icu4c.rb #this is the latest commit with 57.1 I guess based on git log.
brew install icu4c
brew link --force icu4c
然后
pip install pyicu
我没有自己尝试但是应该工作,如果没有,请告诉我,我会尽力确保它在我的机器上运行。