From 23ee6f36f910f5b8700bde70b5c992bc486186e0 Mon Sep 17 00:00:00 2001 From: Ruslan Kuprieiev Date: Thu, 1 Jul 2021 15:56:26 +0300 Subject: [PATCH] import-url: remove gdrive https://github.com/iterative/dvc/issues/2865#issuecomment-872220646 --- content/docs/command-reference/import-url.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/content/docs/command-reference/import-url.md b/content/docs/command-reference/import-url.md index 077903e80a..d720b49e72 100644 --- a/content/docs/command-reference/import-url.md +++ b/content/docs/command-reference/import-url.md @@ -76,7 +76,6 @@ DVC supports several types of external locations (protocols): | --------- | ---------------------------- | --------------------------------------------- | | `s3` | Amazon S3 | `s3://bucket/data` | | `azure` | Microsoft Azure Blob Storage | `azure://container/data` | -| `gdrive` | Google Drive | `gdrive:///data` | | `gs` | Google Cloud Storage | `gs://bucket/data` | | `ssh` | SSH server | `ssh://user@example.com/path/to/data` | | `hdfs` | HDFS to file\* | `hdfs://user@example.com/path/to/data.csv` | @@ -87,7 +86,7 @@ DVC supports several types of external locations (protocols): > If you installed DVC via `pip` and plan to use cloud services as remote > storage, you might need to install these optional dependencies: `[s3]`, -> `[azure]`, `[gdrive]`, `[gs]`, `[oss]`, `[ssh]`. Alternatively, use `[all]` to +> `[azure]`, `[gs]`, `[oss]`, `[ssh]`. Alternatively, use `[all]` to > include them all. The command should look like this: `pip install "dvc[s3]"`. > (This example installs `boto3` library along with DVC to support S3 storage.)