To let pip choose which wheel to download you can give it the base URL with -f
, plus the package name (or name==version) like normal pip commands. Something like this:
pip install -U --pre -f https://wxpython.org/Phoenix/snapshot-builds wxPython
That will fetch the correct package based on platform, architecture and Python version, if there is a match available.