Skip to content Skip to sidebar Skip to footer

"pip Freeze" Gives Different Modules From "help('modules')"

I tried multiple solutions from this answer and they seemed to give be different results. I am using virtualenv and I was wondering if it has something to do with that. The first m

Solution 1:

Realized what the problem was...

pip -V

gave

pip 1.3.1 from /home/benjam15/.env/env/lib/python2.7/site-packages/pip-1.3.1-py2.7.egg
        (python 2.6)

while I was using python 2.7. Followed this post since the server's default "pip" command routed to python 2.6, while I really wanted stuff to install for python 2.7.

Post a Comment for ""pip Freeze" Gives Different Modules From "help('modules')""