Reputation: 12159
The documentation says that if I already have virtualenv installed, then pip is available by default on my system. However, there exists /usr/bin/virtualenv
but no /usr/bin/pip
. What am I doing wrong ?
Upvotes: 1
Views: 139
Reputation: 599956
It won't be /usr/bin/pip
. pip is installed within your virtualenv. It'll be in the bin
directory within the virtualenv folder, which is added to the front of your path when you activate the environment.
Upvotes: 2