I'm relatively new to Python, and I'm stuck on something that is probably relatively easy to resolve.
I installed the following packages:
pip install
pip install
pip install
In my Python file, I have:
import cv2
import io
import os
from google.cloud import vision
...etc...
And this gives me an error:
Traceback (most recent call last):
File "test.py", line 6, in <module>
from google.cloud import vision
ImportError: No module named 'google.cloud'
What am I missing and where should I look (magazines?) To find an answer in the future.
PS:
In the installation folder google-cloud, and google-cloud-visionhave concluded:
Cannot remove entries from nonexistent file /Users/foobar/anaconda/lib/python3.5/site-packages/easy-install.pth
UPDATE :
Launch pip freezedoes not display packages that need to be installed ...
source
share