! chmod 600 ~/.kaggle/kaggle.json
why put '!' at the beginning of a line of code google colab ML model?
i want to know why this is so
! chmod 600 ~/.kaggle/kaggle.json
why put '!' at the beginning of a line of code google colab ML model?
i want to know why this is so
This indicates it is running a shell command. For instance, you can install packages by
!pip install
within Google Colab.