how could we install opencv on anaconda?(我们如何在 anaconda 上安装 opencv?)
问题描述
我尝试在 Anaconda 上安装 OpenCV
I tried to install OpenCV on Anaconda
pip install cv2
pip install opencv
conda install opencv
conda install -c https://conda.binstar.org/jjhelmus opencv
(参考这里 Anaconda 找不到模块 cv2)
但都失败了.有人知道怎么安装吗?
but all failed. Does anybody know how to install this?
推荐答案
运行以下命令:
conda install -c https://conda.binstar.org/menpo opencv
发现opencv3现在也可以了,运行如下命令:
I realized that opencv3 is also available now, run the following command:
conda install -c https://conda.binstar.org/menpo opencv3
2016 年 8 月 18 日编辑:您可以通过以下方式永久添加menpo"频道:
Edit on Aug 18, 2016: You may like to add the "menpo" channel permanently by:
conda config --add channels menpo
然后可以通过以下方式安装opencv:
And then opencv can be installed by:
conda install opencv(or opencv3)
2017 年 8 月 14 日编辑:clinicalgraphics"频道为最近的 python3 提供了相对较新的 vtk 版本
Edit on Aug 14, 2017: "clinicalgraphics" channel provides relatively newer vtk version for very recent python3
conda install -c clinicalgraphics vtk
这篇关于我们如何在 anaconda 上安装 opencv?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:我们如何在 anaconda 上安装 opencv?


基础教程推荐
- 使 Python 脚本在 Windows 上运行而不指定“.py";延期 2022-01-01
- 合并具有多索引的两个数据帧 2022-01-01
- 哪些 Python 包提供独立的事件系统? 2022-01-01
- 症状类型错误:无法确定关系的真值 2022-01-01
- Python 的 List 是如何实现的? 2022-01-01
- 如何在 Python 中检测文件是否为二进制(非文本)文 2022-01-01
- 使用 Google App Engine (Python) 将文件上传到 Google Cloud Storage 2022-01-01
- 使用Python匹配Stata加权xtil命令的确定方法? 2022-01-01
- 将 YAML 文件转换为 python dict 2022-01-01
- 如何在Python中绘制多元函数? 2022-01-01