Python Can't See Modules Installed With Pip
I'm working in a brand new Python virtualenv. I've just installed httplib2 using pip, but Python cannot see it. (venv)$ sudo pip install httplib2 Requirement already satisfied (us
Solution 1:
Try it without the sudo in a fresh virtualenv. Pip thinks that you want to install it in global scope, so to /usr, not in your sandbox.
Post a Comment for "Python Can't See Modules Installed With Pip"