0

我正在努力安装 OpenCV 以在我的 Mac 上使用 Python http://www.jeffreythompson.org/blog/2013/08/22/update-installing-opencv-on-mac-mountain-lion/

我安装了所有东西都没有问题,但最后我遇到了这个有线问题,提到“OpenCV 库”没有连接

$ pkg-config --cflags opencv
-I/usr/local/include/opencv -I/usr/local/include 

$ brew install opencv
Warning: opencv-2.4.6.1 already installed, it's just not linked

$ python
Python 2.7.3 (v2.7.3:70274d53c1dd, Apr  9 2012, 20:52:43) 
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.

>>> import cv
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named cv
>>> import cv
4

2 回答 2

1

对于它的价值,我认为你只是错过了我的指示中的一步。您需要将以下行添加到您.bash_profile的主文件夹中的文件中(如果文件不存在,则创建它):

export PYTHONPATH=/usr/local/lib/python2.7/site-packages:$PYTHONPATH

确保在启动 Python 之前重新启动终端。

于 2013-11-14T00:33:41.020 回答
0

看看这是否适合你....

http://samkhan13.wordpress.com/2012/06/18/using-opencv-with-python-on-your-mac-os-x/

于 2013-11-02T19:11:34.953 回答