What\'s the best way to download a python package and it\'s dependencies from pypi for offline installation on another machine? Is there any easy way to do this with pip or
Download the tarball, transfer it to your FreeBSD machine and extract it, afterwards run python setup.py install and you're done!
python setup.py install
EDIT: Just to add on that, you can also install the tarballs with pip now.