Mounting google drive on google Colab
问题 I followed the steps given in this Medium tutorial on google colab and then tried to clone a git repository but I cannot see the repository anywhere in my drive. The following image is the code snippet I used which is exactly the same as that from the Medium tutorial: 回答1: To mount google drive on google Colab just use these commands: from google.colab import drive drive.mount('/content/drive') It would need an authentication process. Do whatever it needs (open the link and copy the key) Now