You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/task_settings.rst
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,9 +25,15 @@ It is recommended to use the config file since it does not change much.
25
25
gokart.add_config('base.ini')
26
26
27
27
28
-
To use the S3 or GCS repository, please set the bucket path as ``s3://{YOUR_REPOSITORY_NAME}`` or ``gs://{YOUR_REPOSITORY_NAME}`` respectively.
28
+
To use the S3 or GCS repository, please install the corresponding extras and set the bucket path as ``s3://{YOUR_REPOSITORY_NAME}`` or ``gs://{YOUR_REPOSITORY_NAME}`` respectively.
29
29
30
-
If use S3 or GCS, please set credential information to Environment Variables.
30
+
.. code:: sh
31
+
32
+
pip install gokart[s3] # for S3 support
33
+
pip install gokart[gcs] # for GCS support
34
+
pip install gokart[all] # for both S3 and GCS
35
+
36
+
Also, please set credential information to Environment Variables.
0 commit comments