首页 文章

在谷歌Colab上安装谷歌硬盘

提问于
浏览
1

我按照谷歌colab上的这个媒体教程中给出的步骤,然后尝试克隆git存储库,但我无法在驱动器中的任何位置看到存储库 .

下面的图片是我使用的代码片段,它与Medium教程中的代码片段完全相同:

The code snippet I used which is exactly the same as that from the Medium tutorial

2 回答

  • 0

    调整git clone的ur路径 . 尝试添加驱动器文件夹到路径

    import os
    os.chdir("drive")
    
  • 0

    只需做 cd drive (没有 ! )或 %cd drive .

    cd vs !cd vs %cd in IPython .

相关问题