ERROR: Could not build wheels for Polygon3, which is required to install pyproject.toml-based proj ects
时间: 2023-11-16 12:59:21 浏览: 799
Python库 | build_install_wheels-0.2.0.tar.gz
这个错误提示是由于安装pyproject.toml-based项目时,需要编译安装Polygon3,但是编译失败了。这可能是由于缺少相关的编译工具或者依赖库。解决这个问题的方法有以下几种:
1. 确保你的系统中已经安装了相关的编译工具和依赖库,例如Microsoft Visual C++ 14.0或更高版本、Python开发包等。
2. 尝试使用pip install命令安装Polygon3的二进制包,例如pip install Polygon3-binary。如果这个命令不能正常工作,你可以尝试从官方网站下载Polygon3的源代码,手动编译安装。
3. 如果你使用的是conda环境,可以尝试使用conda install命令安装Polygon3,例如conda install -c conda-forge polygon3。
阅读全文