我在 python 3.5 windows 10 中安装 "icu" 时遇到问题
i had issue with installing "icu" in python 3.5 windows 10
在 python
中安装 UCI 包时出错
ERROR: Command "python setup.py egg_info" failed with error code 1
我已经试过了
pip install uci4c
pip install uci
pip3 install uci
ImportError Traceback (most recent call last)
<ipython-input-5-47b8d2b39557> in <module>()
----> 1 from polyglot.downloader import downloader
c:\users\sarir\appdata\local\programs\python\python35\lib\site-packages\polyglot\downloader.py in <module>()
89
90 from polyglot import polyglot_path
---> 91 from polyglot.detect.langids import isoLangs
92 from polyglot.utils import pretty_list
93 from icu import Locale
c:\users\sarir\appdata\local\programs\python\python35\lib\site-packages\polyglot\detect\__init__.py in <module>()
----> 1 from .base import Detector, Language
2
3 __all__ = ['Detector', 'Language']
c:\users\sarir\appdata\local\programs\python\python35\lib\site-packages\polyglot\detect\base.py in <module>()
9
10
---> 11 from icu import Locale
12 import pycld2 as cld2
13
ImportError: No module named 'icu'
我认为您正在尝试安装 polyglot 并且遇到了这个问题,如果您只想安装 PyICU,则不需要安装 PyCLD2.whl,但所有其他说明都是相同的:
要使用 Python 3.6 或 Python 3.7 在 Windows 中安装 polyglot,您需要一个用于两个依赖项的轮子:
您需要下载它们,然后使用本地计算机上的 pip 安装它们。
在这里您会发现许多非官方的 python 构建:
https://www.lfd.uci.edu/~gohlke/pythonlibs/
install PyICU.whl
install PyCLD2.whl
(按 Ctrl+F "pyicu" 和 "pycld" 否则很难浏览此网站)
在这两种情况下,您都需要能够为您的 Windows 版本和 python 版本选择正确的构建版本。
很简单,例如 PyICU:
PyICU wraps the ICU (International Components for Unicode) library.
PyICU‑2.3.1‑cp27‑cp27m‑win32.whl
PyICU‑2.3.1‑cp27‑cp27m‑win_amd64.whl
PyICU‑2.3.1‑cp35‑cp35m‑win32.whl
PyICU‑2.3.1‑cp35‑cp35m‑win_amd64.whl
PyICU‑2.3.1‑cp36‑cp36m‑win32.whl
PyICU‑2.3.1‑cp36‑cp36m‑win_amd64.whl
PyICU‑2.3.1‑cp37‑cp37m‑win32.whl
PyICU‑2.3.1‑cp37‑cp37m‑win_amd64.whl
27 表示 Python 2.7,而 36 Python 3.6...
如果你有 64 位 python 和 windows 然后选择 amd64 否则选择 win32 版本。
下载它们后,您需要在 python 环境中使用 pip 安装它:
就我而言:
python -m pip install C:\Users\Administrator\Downloads\pycld2-0.31-cp37-cp37m-win_amd64.whl
python -m pip install C:\Users\Administrator\Downloads\PyICU-2.3.1-cp37-cp37m-win_amd64.whl
在 python
中安装 UCI 包时出错ERROR: Command "python setup.py egg_info" failed with error code 1
我已经试过了
pip install uci4c
pip install uci
pip3 install uci
ImportError Traceback (most recent call last)
<ipython-input-5-47b8d2b39557> in <module>()
----> 1 from polyglot.downloader import downloader
c:\users\sarir\appdata\local\programs\python\python35\lib\site-packages\polyglot\downloader.py in <module>()
89
90 from polyglot import polyglot_path
---> 91 from polyglot.detect.langids import isoLangs
92 from polyglot.utils import pretty_list
93 from icu import Locale
c:\users\sarir\appdata\local\programs\python\python35\lib\site-packages\polyglot\detect\__init__.py in <module>()
----> 1 from .base import Detector, Language
2
3 __all__ = ['Detector', 'Language']
c:\users\sarir\appdata\local\programs\python\python35\lib\site-packages\polyglot\detect\base.py in <module>()
9
10
---> 11 from icu import Locale
12 import pycld2 as cld2
13
ImportError: No module named 'icu'
我认为您正在尝试安装 polyglot 并且遇到了这个问题,如果您只想安装 PyICU,则不需要安装 PyCLD2.whl,但所有其他说明都是相同的:
要使用 Python 3.6 或 Python 3.7 在 Windows 中安装 polyglot,您需要一个用于两个依赖项的轮子:
您需要下载它们,然后使用本地计算机上的 pip 安装它们。
在这里您会发现许多非官方的 python 构建: https://www.lfd.uci.edu/~gohlke/pythonlibs/
install PyICU.whl
install PyCLD2.whl
(按 Ctrl+F "pyicu" 和 "pycld" 否则很难浏览此网站)
在这两种情况下,您都需要能够为您的 Windows 版本和 python 版本选择正确的构建版本。
很简单,例如 PyICU:
PyICU wraps the ICU (International Components for Unicode) library.
PyICU‑2.3.1‑cp27‑cp27m‑win32.whl
PyICU‑2.3.1‑cp27‑cp27m‑win_amd64.whl
PyICU‑2.3.1‑cp35‑cp35m‑win32.whl
PyICU‑2.3.1‑cp35‑cp35m‑win_amd64.whl
PyICU‑2.3.1‑cp36‑cp36m‑win32.whl
PyICU‑2.3.1‑cp36‑cp36m‑win_amd64.whl
PyICU‑2.3.1‑cp37‑cp37m‑win32.whl
PyICU‑2.3.1‑cp37‑cp37m‑win_amd64.whl
27 表示 Python 2.7,而 36 Python 3.6... 如果你有 64 位 python 和 windows 然后选择 amd64 否则选择 win32 版本。
下载它们后,您需要在 python 环境中使用 pip 安装它:
就我而言:
python -m pip install C:\Users\Administrator\Downloads\pycld2-0.31-cp37-cp37m-win_amd64.whl
python -m pip install C:\Users\Administrator\Downloads\PyICU-2.3.1-cp37-cp37m-win_amd64.whl