I am trying to install discord.py with voice support into Pythonista on my iPad using StaSh. The problem is that when I enter the command pip install discord.py[voice]
like it says to in the documentation, I get an error that says Error: Failed to fetch package release urls
. Can anyone help me figure out what the issue is here? Any help is greatly appreciated. Thanks!
user8116739
问问题
761 次
3 回答
0
正如Github 上的 discord.py repo 中所解释的,该命令可能会因您的操作系统而异。
在 Linux/macOS 中,您应该使用以下命令"
:
pip install "discord.py[voice]"
于 2021-03-29T00:31:00.923 回答
0
在 discord.py 文档中,它说使用这个命令:
pip install -U discord.py[voice]
试试看。
于 2021-03-29T08:55:44.490 回答
0
在“discord.py[VOICE]”周围添加引号,看看它是否有效
于 2021-03-29T08:51:05.213 回答