J'ai un PC Windows 10 et je veux installer pyaudio pour l'utiliser avec mon chatbot, alimenté par chatterbot.
J'ai essayé 2 façons différentes d'installer pyaudio.
La première façon est de le faire à l'invite de commande :
python -m pip install PyAudio
Voici le résultat :
C:\Users\Waaberi>python -m pip install PyAudio
Collecting PyAudio
Using cached https://files.pythonhosted.org/packages/ab/42/b4f04721c5c5bfc196ce156b3c768998ef8c0ae3654ed29ea5020c749a6b/PyAudio-0.2.11.tar.gz
Installing collected packages: PyAudio
Running setup.py install for PyAudio ... error
Complete output from command C:\Users\Waaberi\AppData\Local\Programs\Python\Python37-32\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\Waaberi\\AppData\\Local\\Temp\\pip-install-e5le61j0\\PyAudio\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record C:\Users\Waaberi\AppData\Local\Temp\pip-record-adj3zivl\install-record.txt --single-version-externally-managed --compile:
running install
running build
running build_py
creating build
creating build\lib.win32-3.7
copying src\pyaudio.py -> build\lib.win32-3.7
running build_ext
building '_portaudio' extension
error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": http://landinghub.visualstudio.com/visual-cpp-build-tools
----------------------------------------
Command "C:\Users\Waaberi\AppData\Local\Programs\Python\Python37-32\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\Waaberi\\AppData\\Local\\Temp\\pip-install-e5le61j0\\PyAudio\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record C:\Users\Waaberi\AppData\Local\Temp\pip-record-adj3zivl\install-record.txt --single-version-externally-managed --compile" failed with error code 1 in C:\Users\Waaberi\AppData\Local\Temp\pip-install-e5le61j0\PyAudio\
La deuxième façon est d'entrer cette commande :
python pip install python-pyaudio
et cela ne fait rien.
3 votes
Avez-vous lu le message d'erreur de la première commande, en particulier la partie qui dit "Microsoft Visual C++ 14.0 est requis." ?
0 votes
Je suis presque sûr que vous allez aussi devoir installer PortAudio .
0 votes
Comment installer PortAudio ?
0 votes
L'installation de la librairie vc++ est ennuyeuse parce que j'ai déjà installé une version supérieure, par exemple
Microsoft Visual C++ 2015-2022 Redistributable(x86)
. je ne veux pas désinstaller la version supérieure d'abord.