Numba和llvmlite不会安装在sage cygwin上

2024-09-30 00:27:12 发布

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

即使在SageMath 9.1 Shell的管理下,我也无法安装numba (构建链可能已断开,是否有解决方法--conda install?)。 Numba将帮助重塑矩阵和其他东西

这基本上是一个错误:

$ sage --pip install numba

Collecting numba
  Using cached files.pythonhosted.org/packages/5e/81/6fd1dd064bcf71a79da109e8966a39e2da61d68bf0bd1e0839fa997f8c41/numba-0.51.2.tar.gz
Collecting llvmlite<0.35,>=0.34.0.dev0 (from numba)
  Using cached files.pythonhosted.org/packages/0b/96/07bfa93a103fb9e3e9ae7f9f7c6687ae714aee66b6f3000da3fad71e0aa2/llvmlite-0.34.0.
<......>
    
Traceback (most recent call last):
      File "/tmp/pip-install-ju72yen0/llvmlite/ffi/build.py", line 191, in <module>
        main()
      File "/tmp/pip-install-ju72yen0/llvmlite/ffi/build.py", line 187, in main
        raise RuntimeError("unsupported platform: %r" % (sys.platform,))
    RuntimeError: unsupported platform: 'cygwin'
    error: command '/opt/sagemath-9.1/local/bin/python3.exe' failed with exit status 1

    ----------------------------------------
**Command "/opt/sagemath-9.1/local/bin/python3.exe -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-ju72yen0/llvmlite/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-record-oiztj3wr/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-install-ju72yen0/llvmlite/**

Tags: installpipinpycoderecordtmpfile
1条回答
网友
1楼 · 发布于 2024-09-30 00:27:12

我认为这里的问题相当清楚:llvmlite是numba的一个依赖项,不支持Cygwin

在llvmlite构建脚本中,似乎有an explicit check个受支持的平台,目前不包括cygwin。然而,最近有一个{a2}添加了cygwin支持,但尚未对其进行审查

p.S.康达不支持cygwin

相关问题 更多 >

    热门问题