怎么在pycharm中安装opencv-contrib-python
时间: 2024-06-02 17:07:19 浏览: 129
Python3.7.7+OpenCV4.2+OpenCV-contrib-python在VS2017下的编译和安装配置以及填坑(解决PyCharm无自动补全的问题)
您可以使用以下命令在 PyCharm 中安装 opencv-contrib-python:
1. 打开 PyCharm。
2. 点击 File -> Settings -> Project -> Project Interpreter。
3. 在 Project Interpreter 下拉菜单中选择您的 Python 版本。
4. 在右侧面板中,点击加号图标以添加一个新的包。
5. 在弹出窗口中,在搜索栏中搜索 opencv-contrib-python,并选择适用于您的 Python 版本的最新版本。
6. 点击 Install Package 按钮以安装 opencv-contrib-python 包。
这样就可以在 PyCharm 中使用 opencv-contrib-python 包了。
阅读全文