From 70d727a0788478bef2bf5030f2d98d44e05f1e8c Mon Sep 17 00:00:00 2001 From: Ruslan Kuprieiev Date: Thu, 18 Aug 2022 20:29:28 +0300 Subject: [PATCH] doctor: ignore missing plugins --- dvc/info.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dvc/info.py b/dvc/info.py index 778f194b57..d804363cb6 100644 --- a/dvc/info.py +++ b/dvc/info.py @@ -94,7 +94,11 @@ def _get_supported_remotes(): if scheme in [Schemes.LOCAL, Schemes.MEMORY]: continue - fs_cls = registry[scheme] + try: + fs_cls = registry[scheme] + except ImportError: + continue + if not fs_cls.get_missing_deps(): dependencies = [] for requirement in fs_cls.REQUIRES: