我正在尝试使用命令安装“CMake”

pip3 install CMake.

它给出了模块“skbuild”的错误
from skbuild import setup, ModuleNotFoundError: No module named 'skbuild'

但是但是当尝试使用命令安装skbuild时
pip3 install skbuild

它给出了错误
"Could not find a version that satisfies the requirement skbuild (from versions: ) No matching distribution found for skbuild".

我无法解决此错误。请帮忙。我尝试在Windows 10上实现。使用Python 3.7.0。我尝试了几个版本的pip3(10.0.1、9.0.3、9.0.2、9.0.1)。什么都没用。

最佳答案

对于Windows,在THIS页上有预编译的二进制文件可作为MSI软件包和ZIP文件。您可以找到所用操作系统之一。

如果您想继续使用当前的方法,那么您可以引用THIS LINK吗?

08-26 09:03