pyaudio installtion error in windows

后端 未结 1 509
面向向阳花
面向向阳花 2021-01-18 16:24

I am using python 2.7 in my windows 10 system. When i try to install pyaudio from command prompt using the command

easy_install pyaudio

I a

相关标签:
1条回答
  • 2021-01-18 17:01

    Look at the output:

    Some externally hosted files were ignored as access to them may be unreliable    
    (use --allow-external pyaudio to allow).
    

    You can install it adding extra arguments to pip:

    pip install pyaudio --allow-external pyaudio --allow-unverified pyaudio
    

    Also, do you have PortAudio installed?

    0 讨论(0)
提交回复
热议问题