0

So I was running this command

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

in PyCharm (using latest version) but it couldn't let me install it. It gave me this exception:

ERROR: The 'make' utility is missing from PATH

ERROR: Failed building wheel for PyNaCl Failed to build PyNaCl

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

Timus
  • 10,974
  • 5
  • 14
  • 28

1 Answers1

0

if you are in linux run,

sudo pip3 install discord.py[voice] -U

or if you are on windows run,

pip install discord.py[voice] -U
Amit Agarwal
  • 309
  • 1
  • 8