so I was trying to run a python code, but the shell kept telling me that no 'pymongo' module was found. Now, I have python 3.5.1 installed. when I run pip freeze | grep pymongo it returns pymongo == 3.2.2 so it's clearly installed. I tried to run pymongo from the shell rather than a script but I get the same error every time.
import pymongo Traceback (most recent call last): File "", line 1, in ImportError: No module named 'pymongo'
So, help? It worked fine a month ago or so..