Search pypi package filtering by processor architecture

I’m wondering how can I find a package on pypi with filtering by amd/arm processor architecture, let’s say I need to download the .whl file of the numpy package for windows amd64, how can I get a direct link to this .whl file? pip search is not filtered by processor architecture >Solution : let’s say… Read More Search pypi package filtering by processor architecture

Remove private PyPi index from local virtual env

I have somehow managed to mess up my pip indexes for a local virtual env. pip config list returns the following :env:.index-url=’https://***/private-pypi/simple/’ global.index-url=’https://pypi.python.org/simple’ This makes pip to always default to searching the private pypi index first. Any idea how I can remove the env specific index? It does not appear in the pip.conf file and… Read More Remove private PyPi index from local virtual env

Python, package exists on PyPi but cant install it via pip

The package PyAudioWPatch is shown as available on PyPi with a big old green check mark. https://pypi.org/project/PyAudioWPatch/ However when I try to install it, I am getting the following error: % pip install PyAudioWPatch ERROR: Could not find a version that satisfies the requirement PyAudioWPatch (from versions: none) ERROR: No matching distribution found for PyAudioWPatch… Read More Python, package exists on PyPi but cant install it via pip