如何在 windows 上安装 opencv
How to install opencv on windows
我想使用 anaconda 提示符在 windows 上安装 face_recognition 包,但是官方文档说 "Windows not officially supported, but might work"。
我在尝试安装 face_recognition 时遇到 OpenCV(dlib) 错误。
任何帮助将不胜感激!
我通过以下命令解决了我的问题:
为了兼容性降级 python。
conda install python=3.6.0
从 conda-forge
安装 dlib
conda install -c conda-forge dlib
使用 --no-dependencies 标志安装 face_recognition pkg 以避免将 dlib 安装为依赖项
pip install --no-dependencies face_recognition
我想使用 anaconda 提示符在 windows 上安装 face_recognition 包,但是官方文档说 "Windows not officially supported, but might work"。 我在尝试安装 face_recognition 时遇到 OpenCV(dlib) 错误。 任何帮助将不胜感激!
我通过以下命令解决了我的问题:
为了兼容性降级 python。
conda install python=3.6.0
从 conda-forge
安装 dlibconda install -c conda-forge dlib
使用 --no-dependencies 标志安装 face_recognition pkg 以避免将 dlib 安装为依赖项
pip install --no-dependencies face_recognition