[Fixed]-"pip freeze" gives different modules from "help('modules')"

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.

👤benja

Leave a comment