Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从 svn 下载了 opencv 2.4 源代码,然后我使用命令'cmake -D BUILD_TESTS=OFF' 生成 makefile 并制作和安装。发现python模块制作成功。但是当我在 python 中导入 cv2 时,没有模块 cv2 存在。还有什么我应该配置的吗?谢谢你的帮助。
您应该将 cv2 库复制到 PYTHONPATH 中的某个位置,或者将当前目录添加到 PYTHONPATH。
您是否运行过“make install”或“sudo make install”?虽然不是绝对必要的,但它会将生成的二进制文件复制到您的系统路径。