To download a package manually, you can run a variation of the following command:

sudo python3 -m pip download pyzmq

To install a pip package that you have previously downloaded, you can run a variation of the following command:

sudo python3 -m pip install pyzmq --no-index --find-links .

Note: it looks for the package on the current working directory.