Not Able To Install Python Package Libportaudio-dev Via Pip On Windows 10
Python Version : 2.7.13 Pip Version: 9.0.1 Error: Could not find a version that satisfies the requirement libportaudio-dev(from version:) No matching distribution found for libport
Solution 1:
pip
installs packages from PyPI and there is no libportaudio-dev at PyPI. It's not a Python package. It is a package in Ubuntu.
To install it on w32 you have to download the source code and compile it. See the instructions.
There are old precompiled binaries at https://github.com/adfernandes/precompiled-portaudio-windows
https://github.com/spatialaudio/portaudio-binaries — these ones look more fresh.
Post a Comment for "Not Able To Install Python Package Libportaudio-dev Via Pip On Windows 10"