ERROR: Could not build wheels for smbus, which is required to install pyproject.toml-based projects
时间: 2023-10-19 18:36:04 浏览: 200
Python库 | build_install_wheels-0.2.0.tar.gz
这个错误通常是由于缺少Python编译环境导致的。在Linux系统上,可以通过以下命令来安装编译环境:
```
sudo apt-get install python3-dev build-essential
```
如果你使用的是Windows操作系统,则可以通过安装Microsoft Visual C++ Build Tools来解决此问题。你可以访问以下链接下载并安装Microsoft Visual C++ Build Tools:https://visualstudio.microsoft.com/visual-cpp-build-tools/
安装完成后,再次尝试安装smbus模块即可。
阅读全文