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.
如何在我的 Azure Jupyter NoteBook 上安装 Open Cv 库。使用显示 Open Cv 版本的命令后,它返回“未找到模块”。有没有办法解决这个问题
在左侧菜单中选择控制台。在这里,您可以使用 pip 或 conda 安装模块。
另一种方式,您可以使用以下代码从 Jupyter Notebook 安装 opencv:
import sys !{sys.executable} -m pip install opencv-python