ERROR: Could not build wheels for PyNaCl which use PEP 517 and cannot be installed directly

19.7k views Asked by At

I'm using the latest Version of Pycharm:

When I Enter this command:

pip install -U discord.py[voice]

This Error Message shows:

ERROR: Could not build wheels for PyNaCl which use PEP 517 and cannot be installed directly

What should I do?

4

There are 4 answers

0
AzyCrw4282 On BEST ANSWER

PEP 517 was known to have some problems with virtualenvs so that could be a likely cause.

Try to perform these commands and see if that works

pip install --upgrade pip
pip install --no-use-pep517 discord.py[voice]

If not try to downgrade your pip version

pip install pip==18.1

and then try the package install command again.

1
JohanV On

Try to install binutils first before installing PyNaCl on Termux.

pkg install binutils
0
Prabhudsp On

Thanks, @kyrisu, your solution actually worked installing make did the trick for certain cloud packages it throws an error if there is no cmake installed too. Adding the command which I used on my alpine image.

RUN apk add --no-cache make cmake

This adds both make and cmake and post that the dependencies are installed without any issues.

0
Manoranjan Singh On
[root@username ~]# pip3 install -U discord.py[voice]

above worked for me ^^ on RHEL 8.