ModuleNotFoundError: No module named 'google_drive_downloader'&&No matching distribution found for google_drive_downloader 【问题解决】
安装 googledrivedownloader
(adaface) C:\Users\liruilong\Documents\GitHub\caface_demo\demo>python main.py --fusion_method cluster_and_aggregate
Traceback (most recent call last):
File "main.py", line 17, in <module>
from face_detection.detector import FaceDetector
File "C:\Users\liruilong\Documents\GitHub\caface_demo\demo\face_detection\detector.py", line 1, in <module>
from . import fastface as ff
File "C:\Users\liruilong\Documents\GitHub\caface_demo\demo\face_detection\fastface\__init__.py", line 1, in <module>
from . import adapter, dataset, loss, metric, transforms, utils
File "C:\Users\liruilong\Documents\GitHub\caface_demo\demo\face_detection\fastface\adapter\__init__.py", line 3, in <module>
from .gdrive import GoogleDriveAdapter
File "C:\Users\liruilong\Documents\GitHub\caface_demo\demo\face_detection\fastface\adapter\gdrive.py", line 3, in <module>
from google_drive_downloader import GoogleDriveDownloader as gdd
ModuleNotFoundError: No module named 'google_drive_downloader'
(adaface) C:\Users\liruilong\Documents\GitHub\caface_demo\demo>python main.py --fusion_method cluster_and_aggregate
Traceback (most recent call last):
File "main.py", line 17, in <module>
from face_detection.detector import FaceDetector
File "C:\Users\liruilong\Documents\GitHub\caface_demo\demo\face_detection\detector.py", line 1, in <module>
from . import fastface as ff
File "C:\Users\liruilong\Documents\GitHub\caface_demo\demo\face_detection\fastface\__init__.py", line 1, in <module>
from . import adapter, dataset, loss, metric, transforms, utils
File "C:\Users\liruilong\Documents\GitHub\caface_demo\demo\face_detection\fastface\adapter\__init__.py", line 3, in <module>
from .gdrive import GoogleDriveAdapter
File "C:\Users\liruilong\Documents\GitHub\caface_demo\demo\face_detection\fastface\adapter\gdrive.py", line 3, in <module>
from google_drive_downloader import GoogleDriveDownloader as gdd
ModuleNotFoundError: No module named 'google_drive_downloader'
(adaface) C:\Users\liruilong\Documents\GitHub\caface_demo\demo>pip install google_drive_downloader -i https://pypi.tuna.tsinghua.edu.cn/simple
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
ERROR: Could not find a version that satisfies the requirement google_drive_downloader (from versions: none)
ERROR: No matching distribution found for google_drive_downloader
包名不对
(adaface) C:\Users\liruilong\Documents\GitHub\caface_demo\demo>pip install googledrivedownloader -i https://pypi.tuna.tsinghua.edu.cn/simple
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
Collecting googledrivedownloader
Downloading https://pypi.tuna.tsinghua.edu.cn/packages/3a/5c/485e8724383b482cc6c739f3359991b8a93fb9316637af0ac954729545c9/googledrivedownloader-0.4-py2.py3-none-any.whl (3.9 kB)
Installing collected packages: googledrivedownloader
Successfully installed googledrivedownloader-0.4
(adaface) C:\Users\liruilong\Documents\GitHub\caface_demo\demo>python main.py --fusion_method cluster_and_aggregate
加油,愿被这世界温柔以待 ^_^
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· 单线程的Redis速度为什么快?
2021-11-06 OSError: [WinError 10013] 以一种访问权限不允许的方式做了一个访问套接字的尝试。 问题解决