I recently needed to download Python packages on a macOS machine with Python 3.7 to deploy later on a Linux machine with Python 3.7.
I therefore executed the following command to download the needed packages:
pip3 download --platform manylinux1_x86_64 --python-version 3.7 --abi cp37m --only-binary :all: <package>
However, some of the packages were not obtainable using the above command. After some experimenting, I could download them using --abi cp37
instead of --abi cp37m
.
How can I check which versions (platform,version,abi) of a package are available using pip3
?