python 安装opecv
时间: 2023-10-15 22:31:10 浏览: 98
Ubuntu 安装OpenCV python
要在Python中安装OpenCV,可以使用pip命令。首先,您需要安装opencv-python包,可以通过运行以下命令来安装:
```
pip install opencv-python -i https://pypi.tuna.tsinghua.edu.cn/simple
```
然后,如果您需要安装opencv-contrib-python包,可以使用以下命令:
```
pip install opencv-contrib-python -i https://pypi.tuna.tsinghua.edu.cn/simple
```
请注意,安装过程中可能需要从互联网下载相应的文件,安装时间可能会根据您的网络速度而有所不同。
安装完成后,您就可以在Python中使用OpenCV库了。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
阅读全文