Python: Discord.py Error: Could Not Build Wheels For Multidict, Yarl Which Use Pep 517 And Cannot Be Installed Directly
So I recently have tried to install discord.py through cmd but its giving me an error no matter if I use pip3 py pip. It says i need to install visual studio 14 but i have visual s
Solution 1:
Two (three if using voice) of discord.py's dependencies do not yet have prebuilt wheels for Python 3.9.0 and must be compiled from source. You have three choices.
Install the Micosoft Visual C++ standalone compilers (https://wiki.python.org/moin/WindowsCompilers), and try to install discord.py without voice (PyNaCl still has issues on windows).
1a) Alternatively, you can Install these two wheels (yarl, multidict) precompiled from https://www.lfd.uci.edu/~gohlke/pythonlibs/. Note that PyNaCl is not supplied here.
Downgrade to Python 3.8.6 which does have prebuilt wheels for all of discord.py's dependencies.
Post a Comment for "Python: Discord.py Error: Could Not Build Wheels For Multidict, Yarl Which Use Pep 517 And Cannot Be Installed Directly"