问题标签 [pyicu]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python - 尝试安装 PyICU 时出现 FileNotFoundError
当我尝试安装 PyICU 时,我收到错误消息“FileNotFoundError:[WinError 2] 系统找不到指定的文件”(代码下方为德语)。
从其他问题中,我了解到我可能与我的道路有关。但由于我是 Python 新手,我真的不知道如何处理这些信息。
在这一点上,我真的不知道如何继续。
请帮我一把!
谢谢。
python - 在 python 3.6.2 最近安装的包中安装 PyICU 时出错
所以,刚刚安装了最新的 3.6.2 python 版本并更新了 pip 和 setuptools,所以我开始安装 PyICU 并且没有安装错误,在互联网内导航我没有发现相同的错误,我在 1.9.5 中发现了一些类似但看起来不一样。有人有线索吗?:
python -m pip 安装 PyICU
python - python 3 中的 PyICU 错误:ImportError: libicui18n.so.58
当我正在为非英语(僧伽罗语)语言做一个项目时,我需要对 unicode 中的单词进行排序。
所以我按照这个问题的答案在我已经安装了 tensorflow 和 NLTK 的 conda 环境中安装了 PyICU。
现在在 python 控制台(在 Pycharm 中)使用import icu
和执行代码时,我得到了这个错误。
这是为什么 ?是否有任何可能PyICU
无法在 conda 环境中使用?
python - “未知类型名称'decltype'”:在mac上安装pyicu失败,出现gcc错误
我运行了以下命令(因为我的 Mac 上有 python2 和 python3):
$ CFLAGS=-I/usr/local/opt/icu4c/include LDFLAGS=-L/usr/local/opt/icu4c/lib sudo python3 -m pip install pyicu
错误信息如下:
安装收集的包:pyicu Running setup.py install for pyicu ... error Complete output from command /anaconda3/bin/python3 -u -c "import setuptools, tokenize; file ='/private/tmp/pip-build-l71tm0m4/ pyicu/setup.py';f=getattr(tokenize, 'open', open)( file );code=f.read().replace('\r\n', '\n');f.close( );exec(compile(code, file , 'exec'))" install --record /tmp/pip-7298jccr-record/install-record.txt --single-version-externally-managed --compile:
命令“/anaconda3/bin/python3 -u -c”导入setuptools,tokenize;file ='/private/tmp/pip-build-l71tm0m4/pyicu/setup.py';f=getattr(tokenize, 'open', open)( file );code=f.read().replace('\r \n', '\n');f.close();exec(compile(code, file , 'exec'))" install --record /tmp/pip-7298jccr-record/install-record.txt -- single-version-externally-managed --compile" 失败,错误代码 1 在 /private/tmp/pip-build-l71tm0m4/pyicu/
python - mac上的pyicu:./common.h:38:13:错误:未知类型名称'decltype'
我正在尝试在 osx 10.12.4 上安装 pyicu,但我不断收到错误消息:
我正在尝试使用 polyglot :
但它给出了 pyicu 错误,所以我正在安装 pyicu :
我试过了 :
我试图遵循这个问题,但没有适当的解决方案,如何安装 picu ?
python - 无法在 MacOS 上安装 pyicu
我尝试通过安装pip3 install pyicu
并收到以下错误:
然后从某些来源我知道我需要为 icu安装icu4c
和配置。.bash_profile
也尝试过这样做,但错误仍然存在。请帮帮我。
python-3.x - Mac 和 Ubuntu 中 icu 的导入错误,尽管 pyicu 安装正确
我已pyicu
在 MacOS 和 Ubuntu 14.04 中安装,但在导入时显示 ImportError。对于 MacOS 高山脉输出是:
在 ubuntu 14.0 上:
python - 在 ubuntu 16.04 中找不到 libicui18n.so.58
我正在尝试在 virtualenv 中安装 pyicu
它已安装但在尝试使用其方法时,它通过以下错误
然后尝试使用以下命令安装 icu 二进制文件
同样的问题仍然存在
我的系统详情
- 操作系统详情:Ubuntu 16.04
- 蟒蛇版本:3.5
- 使用 pip 在 virtualenv 中安装
python-3.x - 正确安装 PyICU 和 icu4c 时,多语言导入或未找到符号错误
我真的很挣扎polyglot
,pyicu
而且icu4c
- 似乎我不是唯一一个......
我正在10.13.6
使用 virtualenv 运行 Mac OS High Sierra 和 python3
以下是我采取的步骤,主要基于这篇文章:
- 从一个新的 virtualenv 开始
- 使用自制软件删除并重新安装 icu4c (v.62.1)
- 检查 ICU_VERSION 是否为“62.1”
- 做
ln -s /usr/local/Cellar/icu4c/62.1/bin/icu-config /usr/local/bin/icu-config
- 下载 pyicu tar 文件 (2.1)
- 如链接文章中所示,提取 pyicu 并编辑 setup.py
- 构建和安装 pyicu
我懂了:
正如预期的那样。
- pip3 安装多语言
当我运行我的脚本时,我得到以下信息:
不足为奇,因为 PATH 中实际上没有 icu 模块。
如果,而不是步骤 5-7,我执行 pip3 install pyicu (创建 icu 文件夹),我得到:
输出otool -L /Users/Chris/MindWeb/Server/lib/python3.6/site-packages/_icu.cpython-36m-darwin.so
是:
python - 无法在 macOS High Sierra 10.13.6 上安装多语言
我尝试通过安装pip install polyglot
并收到以下错误:
当我尝试安装 PyICU 时,我遇到了完全相同的错误。请帮忙!