我正在尝试将文件夹放入我的项目的colab中。我将以下命令放入要运行的单元格中:
from google.colab import drive
drive.mount('/content/drive')
然后在下面我将
!pwd
了解我的位置,这给了我
/content
然后我将使用命令
!ls
这告诉我我有两个目录:
drive sample_data
问题开始于
!cd /drive/
被告知
/bin/bash: line 0: cd: /drive/: No such file or directory
问题是我想去我已转储文件的地方,而这些bash命令似乎并没有多大帮助。因此,基本上!cd并不能帮助移动到正确的目录。