Frankie Ribery
Frankie Ribery

Reputation: 12159

Why is pip unavailable when I install virtualenv?

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

Answers (1)

Daniel Roseman
Daniel Roseman

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

Related Questions