raise RuntimeError(msg) from None RuntimeError: Could not find a `llvm-config` binary. There are a number of reasons this could occur, please see: https://llvmlite.readthedocs.io/en/latest/admin-guide/install.html#using-pip for help.
时间: 2024-04-23 07:21:38 浏览: 210
这个错误是因为在运行某个 Python 包时,需要使用 LLVM 库,但是系统中没有找到 `llvm-config` 命令,导致无法编译这个包。您可以按照链接 https://llvmlite.readthedocs.io/en/latest/admin-guide/install.html#using-pip 中的说明,安装 LLVM 库并设置 `llvm-config` 的路径,或者直接使用预编译的二进制包安装。另外,您也可以通过在命令行中运行 `export LLVM_CONFIG=path/to/llvm-config` 来设置 `llvm-config` 的路径,然后再运行 Python 包。
阅读全文