Error installing discord.py #5898
-
I've never done this before so I'm not entirely sure what I am supposed to do. The full error is here, I know it's hard to read but putting it in code format was giving it weird issues:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
You're using Python 3.9 which came out rather recently. Since Python 3.9 is so new, they do not provide "wheels". Wheels are binary modules that allow you to install compiled code without compiling it yourself. Your options are either to wait until all the maintainers of the dependencies I use (aiohttp, yarl, multidict, PyNaCl) upload wheels into PyPI or downgrade to 3.8 which has wheels already. |
Beta Was this translation helpful? Give feedback.
You're using Python 3.9 which came out rather recently. Since Python 3.9 is so new, they do not provide "wheels". Wheels are binary modules that allow you to install compiled code without compiling it yourself.
Your options are either to wait until all the maintainers of the dependencies I use (aiohttp, yarl, multidict, PyNaCl) upload wheels into PyPI or downgrade to 3.8 which has wheels already.