1.创建虚拟环境
conda create -n yolo python=3.10
这边创建的python版本需要跟后续安装dlib的whl python版本对应,不然会提示不支持。
2.激活虚拟环境
conda activate dlib
3.相关依赖安装
pip install cmake pip install boots
报错: 安装boots提示
(dlib) C:\Users\ericzhuang\Desktop>pip install boots ERROR: Could not find a version that satisfies the requirement boots (from versions: none) ERROR: No matching distribution found for boots
解决:
pip install dlib -i https://pypi.douban.com/simple
标签:python,boots,dlib,window,虚拟环境,install,pip,Dlib,下载 From: https://www.cnblogs.com/zhuangquan/p/17358873.html