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
Recently, one of our ML engineers mentioned that sometimes there is a need to download data from Google Drive to the platform.
Seems like this is a perfect use-case for neuro-extras.
Needs
It turned out that RClone does support it.
For doing so, we need to:
Instruct the user, how to generate the key (secret) for accessing the google account link1link2.
Configure RClone to authenticate using this key: rclone config create <remote-name> drive drive-client-id <your-key> drive-client-secret <pass> drive-scope drive config_is_local false - the problem here is that the key generation is often interactive (one will need to open on local machine browser and authenticate RClone, similar to how neuro config login-headless works ).
3.rclone copy <remote-name>:/path/to/src path/to/dst
The text was updated successfully, but these errors were encountered:
Context & problem description
Recently, one of our ML engineers mentioned that sometimes there is a need to download data from Google Drive to the platform.
Seems like this is a perfect use-case for neuro-extras.
Needs
It turned out that RClone does support it.
For doing so, we need to:
rclone config create <remote-name> drive drive-client-id <your-key> drive-client-secret <pass> drive-scope drive config_is_local false
- the problem here is that the key generation is often interactive (one will need to open on local machine browser and authenticate RClone, similar to howneuro config login-headless
works ).3.
rclone copy <remote-name>:/path/to/src path/to/dst
The text was updated successfully, but these errors were encountered: