Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

/usr/lib/python2.7/dist-packages/cv2.

so
/usr/local/lib/python2.7/dist-packages/cv2.so
find: `/usr/share/doc/google-chrome-stable': Permission denied
sandeep@sandeep:~/caffe$ cd
sandeep@sandeep:~$ python
Python 2.7.11 |Anaconda 2.4.1 (64-bit)| (default, Dec 6 2015, 18:08:32)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-1)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
Anaconda is brought to you by Continuum Analytics.
Please check out: http://continuum.io/thanks and https://anaconda.org
>>> import cv2
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named cv2
>>> import sys
>>> sys.path.append('/opt/local/lib/python2.7/dist-packages')
>>> import cv2
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named cv2
>>> sys.path.append('/opt/lib/python2.7/dist-packages')
>>> import cv2
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named cv2
>>> sys.path.append('/usr/lib/python2.7/dist-packages')
>>> import cv2
>>>

You might also like