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: