‘pip install’ fails for every package (“Could not find a version that satisfies the requirement”)
Mac users who use pip and PyPI:
Mac users who use pip and PyPI:
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 easy_install? I’m trying to install the requests library on a FreeBSD box that is not connected to the internet.
Trying to pip install a repo’s specific branch. Google tells me to
I need to install a package from PyPi straight within my script.
Maybe there’s some module or distutils (distribute, pip etc.) feature which allows me to just execute something like pypi.install('requests') and requests will be installed into my virtualenv.
I know pip is a package manager for python packages. However, I saw the installation on IPython’s website use conda to install IPython.
I want to install pip. It should support Python 3, but it requires setuptools, which is available only for Python 2.
I know the obvious answer is to use virtualenv and virtualenvwrapper, but for various reasons I can’t/don’t want to do that.
A tweet reads:
I’m deploying a Django app to a dev server and am hitting this error when I run pip install -r requirements.txt:
Occasionally I run into comments or responses that state emphatically that running pip under sudo is “wrong” or “bad”, but there are cases (including the way I have a bunch of tools set up) where it is either much simpler, or even necessary to run it that way.