0

所以我正在运行这个命令

py -3 -m pip install -U discord.py[voice]

在 PyCharm 中(使用最新版本),但它不能让我安装它。它给了我这个例外:

错误:PATH 中缺少“make”实用程序

错误:PyNaCl 构建轮失败 未能构建 PyNaCl

错误:无法为使用 PEP 517 且无法直接安装的 PyNaCl 构建轮子

4

1 回答 1

0

如果你在 linux 运行,

sudo pip3 install discord.py[voice] -U

或者如果你在 Windows 上运行,

pip install discord.py[voice] -U
于 2020-10-29T10:13:32.713 回答