FileNotFoundError:[错误2]文件b'smallsample.csv'不存在:b'smallsample.csv'

时间:2019-10-07 02:08:55

标签: python google-colaboratory

在Google Colab中,我安装了Google驱动器:

from google.colab import drive     #Mounted at gdrive(set directory)
drive.mount("/content/gdrive")

设置我的路径以读取名为smallsample.csv的文件:

path ='gdrive/My Drive' #/data_analysis/datafiles/reports
df= pd.read_csv('smallsample.csv', sep=',') 

但是,它返回了

FileNotFoundError: [Errno 2] File b'smallsample.csv' does not exist: b'smallsample.csv'

如果我将r添加到df= pd.read_csv('smallsample.csv', sep=',')并没有帮助。我还尝试了其他帖子建议的一些方法,但没有一个解决此问题。有人可以帮忙吗?干杯。

1 个答案:

答案 0 :(得分:0)

分配path = ...不会更改当前工作目录。而是使用Michael建议的绝对路径,或使用以下命令更改工作目录:

%cd /content/gdrive/My Drive

您可以使用%pwd观察当前工作目录,并使用%ls观察当前目录中的文件。