I want to mount google drive on google Colab and I am using this command to mount the drive
from google.colab import drive drive.mount(\'/content/drive/\') <
Just go to "manage section" , then terminate your current section, and try to mount again with:
from google.colab import drive drive.mount('/content/drive', force_remount=True)
It worked here.