There are several approaches
- Mount Google Drive in local Colab VM
- Upload and download via browser
- Use colab_util.py in python script
| #!/bin/bash | |
| # Script for installing Fish Shell on systems without root access. | |
| # Fish Shell will be installed in $HOME/local/bin. | |
| # It's assumed that wget and a C/C++ compiler are installed. | |
| # exit on error | |
| set -e | |
| FISH_SHELL_VERSION=3.0.2 |
There are several approaches