无法在google colaboratory中读取文件。 我在同一目录中有.ipynb文件和.csv文件,但是当我尝试运行时:
train = pd.read_csv("train.csv")
我明白了:
FileNotFoundError: File b'train.csv' does not exist
答案 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}
# Create a directory and mount Google Drive using that directory.
!mkdir -p drive
!google-drive-ocamlfuse drive
print ('Files in Drive:')
!ls drive/
train
google-colaboratory
执行上述代码后,只需打开train = pd.read_csv('drive/...{folder_name}.../train.csv, encoding='utf8')
{{1}}
我希望这有帮助!
答案 1 :(得分:3)
!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
auth.authenticate_user()
gauth = GoogleAuth()
gauth.credentials = GoogleCredentials.get_application_default()
drive = GoogleDrive(gauth)
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)
确保在路径的开头放置/。 通过在资源管理器中右键单击装入的驱动器,您可以复制路径,它不会复制开始的正斜杠。确保将其添加到路径中。