安装 Python 包时出错:PATH 中缺少 make 实用程序

Error installing Python package: make utility is missing from PATH

我正在尝试在 Windows 机器上使用 Python 安装 pynacl。 运行 进入如下错误:

            raise Exception("ERROR: The 'make' utility is missing from PATH")
        Exception: ERROR: The 'make' utility is missing from PATH

        ---------------------------------------- 
Command ""c:\users\paul miller\appdata\local\programs\python\python37\python.exe" -u -c "import setuptools, tokenize;__file__='C:\Users\PAULMI~1\AppData\Local\Temp\pip-install-wxwyakn7\pynacl\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install
    --record C:\Users\PAULMI~1\AppData\Local\Temp\pip-record-syh9a1l_\install-record.txt
    --single-version-externally-managed --compile" failed with error code 1 in C:\Users\PAULMI~1\AppData\Local\Temp\pip-install-wxwyakn7\pynacl\

为了解决异常,我安装了 GnuWin 并将路径添加到我的用户和系统 PATH 变量。

我打开了一个新命令 window 并验证 "make" 已执行。但是,使用以下命令重新运行安装尝试会导致相同的异常:

pip3 install pynacl

接下来我应该尝试什么?

编辑 1:添加屏幕截图以显示正常工作

编辑 2:也尝试了 easy_install,仍然出现 make 错误

所以,这对我来说是一个愚蠢的错误。原来我已经安装了测试版 Python...Python 3.7.0b4,具体来说。

我的厄运。

我删除了测试版并安装了 3.6.4,一切正常。

糟糕。