I'm able to update pip-managed packages, but how do I update pip itself? According to pip --version
, I currently have pip 1.1 installed in my virtualenv and I want to update to the latest version.
What's the command for that? Do I need to use distribute or is there a native pip or virtualenv command? I've already tried pip update
and pip update pip
with no success.
pip install --upgrade pip
? It's just another PyPI package. – Cairnarvon--upgrade
, not--update
, sorry. I edited my post immediately, but you must have seen it at exactly the wrong time. – Cairnarvonpip3
? I am trying for pip3 but it just tells me it can't find it and then goes ahead complains AGAIN that its not up to date...when it doesn't even let me update/upgrade it! – Charlie Parker