在python3.6.2中安装PyICU时出错最近安装的packag

2024-06-16 13:16:24 发布

您现在位置:Python中文网/ 问答频道 /正文

所以,刚刚安装了最新的3.6.2python版本并更新了pip和setuptools,所以我开始安装PyICU,但是我发现了一个安装错误,在internet内部导航时我没有发现同样的错误,我在1.9.5中发现了一些类似的错误,但是看起来不一样。有人有线索吗?公司名称:

python -m pip install PyICU

Collecting PyICU
  Using cached PyICU-1.9.7.tar.gz
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "MPATH\Temp\pip-build-b_ftb5gu\PyICU\setup.py", line 12, in <module>
        ICU_VERSION = os.environ['ICU_VERSION']
      File " MPATH \Programs\Python\Python36-32\lib\os.py", line 669, in __getitem__
        raise KeyError(key) from None
    KeyError: 'ICU_VERSION'

    During handling of the above exception, another exception occurred:

    Traceback (most recent call last):
      File "C MPATH \Temp\pip-build-b_ftb5gu\PyICU\setup.py", line 26, in <module>
        ICU_VERSION = check_output(('icu-config', '--version')).strip()
      File " MPATH \Programs\Python\Python36-32\lib\subprocess.py", line 336, in check_output
        **kwargs).stdout
      File " MPATH \Programs\Python\Python36-32\lib\subprocess.py", line 403, in run
        with Popen(*popenargs, **kwargs) as process:
      File " MPATH \Programs\Python\Python36-32\lib\subprocess.py", line 707, in __init__
        restore_signals, start_new_session)
      File " MPATH \Programs\Python\Python36-32\lib\subprocess.py", line 992, in _execute_child
        startupinfo)
    FileNotFoundError: [WinError 2] El sistema no puede encontrar el archivo especificado

    During handling of the above exception, another exception occurred:

    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File " MPATH \Temp\pip-build-b_ftb5gu\PyICU\setup.py", line 33, in <module>
        ''')
    RuntimeError:
    Please set the ICU_VERSION environment variable to the version of
    ICU you have installed.


    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in MPATH \Temp\pip-build-b_ftb5gu\PyICU\

Tags: pipinpybuildversionlibsetupline
2条回答

我在一个新的Ubuntu安装中遇到了这个问题,并通过安装pkg-config来修复它,这样安装程序就可以找出安装了哪个icu版本:

sudo apt install pkg-config

如果在Linux上发生错误,应该安装ibicu-dev(在Debian上):

sudo apt-get install libicu-dev

来源:https://github.com/ovalhub/pyicu/issues/94

相关问题 更多 >