我无法直接从 Github 安装软件包

问题描述 投票:0回答:1

我的项目需要face_recognition库(python),但如果没有Visual Studio,我无法安装它。我想直接从Github安装包。我尝试了

pip install https://github.com/ageitgey/face_recognition.git
pip install https://github.com/ageitgey/face_recognition.git#egg=face_recognition
` 我该怎么办?

我想要一个没有

pip install https://github.com/ageitgey/face_recognition.git
pip install https://github.com/ageitgey/face_recognition.git#egg?face_recognition

的代码

非常感谢! :)

python
1个回答
0
投票

您使用什么操作系统?根据人脸识别git存储库,您可以通过运行

pip3 install face_recognition
来安装它,前提是您已经安装了
cmake

© www.soinside.com 2019 - 2024. All rights reserved.