无法在google colaboratory中读取文件

时间:2018-02-24 21:22:28

标签: google-colaboratory

无法在google colaboratory中读取文件。 我在同一目录中有.ipynb文件和.csv文件,但是当我尝试运行时:

train = pd.read_csv("train.csv") 

我明白了:

FileNotFoundError: File b'train.csv' does not exist

enter image description here

4 个答案:

答案 0 :(得分:6)

我希望您在打开!apt-get install -y -qq software-properties-common python-software-properties module-init-tools !add-apt-repository -y ppa:alessandro-strada/ppa 2>&1 > /dev/null !apt-get update -qq 2>&1 > /dev/null !apt-get -y install -qq google-drive-ocamlfuse fuse文件之前运行此代码。

第一部分

# Generate auth tokens for Colab

from google.colab import auth auth.authenticate_user()

第二部分

# Generate creds for the Drive FUSE library.

from oauth2client.client import GoogleCredentials creds = GoogleCredentials.get_application_default() import getpass !google-drive-ocamlfuse -headless -id={creds.client_id} -secret={creds.client_secret} < /dev/null 2>&1 | grep URL vcode = getpass.getpass() !echo {vcode} | google-drive-ocamlfuse -headless -id={creds.client_id} -secret={creds.client_secret}

第III部分

# Create a directory and mount Google Drive using that directory.

!mkdir -p drive !google-drive-ocamlfuse drive

第IV部分

print ('Files in Drive:') !ls drive/

train

第五部分

google-colaboratory

执行上述代码后,只需打开train = pd.read_csv('drive/...{folder_name}.../train.csv, encoding='utf8')

中的{{1}}文件即可

{{1}}

我希望这有帮助!

答案 1 :(得分:3)

安装PyDrive包装器&amp;导入库。

每个笔记本只需要执行一次。

!pip install -U -q PyDrive
from pydrive.auth import GoogleAuth
from pydrive.drive import GoogleDrive
from google.colab import auth
from oauth2client.client import GoogleCredentials

验证并创建PyDrive客户端。

每个笔记本只需要执行一次。

auth.authenticate_user()
gauth = GoogleAuth()
gauth.credentials = GoogleCredentials.get_application_default()
drive = GoogleDrive(gauth)

根据文件ID下载文件。

文件ID如下所示:laggVyWshwcyP6kEI-y_W3P8D26sz

file_id = 'REPLACE_WITH_YOUR_FILE_ID'
downloaded = drive.CreateFile({'id': file_id})
downloaded = drive.CreateFile({'id':'1BH-rffqv_1auzO7tdubfaOwXzf278vJK'}) # replace the id with id of file you want to access
downloaded.GetContentFile('xyz.csv')  

# Read file as panda dataframe
import pandas as pd
xyz = pd.read_csv('xyz.csv') 

答案 2 :(得分:1)

我使用Windows 10,这对我来说非常理想。试试看。

将新文件夹添加到驱动器中。命名为您想要的。就我而言,我将其命名为“ Colab笔记本” 。这是我保存代码和数据文件的文件夹。

首先,您需要安装驱动器。为此,请依次运行

from google.colab import drive
drive.mount('/content/drive/')

第二条命令后,它将弹出验证密钥所在的链接。打开此链接,复制密钥,粘贴并按Enter。

现在键入!ls,它必须提供类似drive sample_data的内容

上传数据文件。是csv还是excel文件都没有关系,但是每个命令都不同。

对于csv文件

train = pd.read_csv('/content/drive/My Drive/Colab Notebook/train.csv')

对于excel文件,只需更改pandas命令和文件扩展名即可

答案 3 :(得分:0)

确保在路径的开头放置/。 通过在资源管理器中右键单击装入的驱动器,您可以复制路径,它不会复制开始的正斜杠。确保将其添加到路径中。

gdrive path