You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am playing with the pycocotools package and found that I was not able to import pycocotools from a python script, but COULD import it from ipython. For example:
python -c "import pycocotools"
yields
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named pycocotools
But, doing
ipython
In [1]: import pycocotools
Works fine.
Has anyone seen this problem before? I'm working in a virtual environment.