gpt4 book ai didi

google-cloud-storage - 从 Google Cloud Datalab 中的笔记本读取存储在 Google Cloud Storage 中 zip 文件中的数据

转载 作者:行者123 更新时间:2023-12-02 19:29:57 24 4
gpt4 key购买 nike

我有一个 zip 文件,其中包含存储在 Google Cloud Storage 实例中的 zip 文件中的相对较大的数据集 (1Gb)。

我需要使用 Google Cloud Datalab 中托管的笔记本来访问该文件及其中包含的数据。我该怎么办?

谢谢。

最佳答案

你能尝试以下方法吗?

import pandas as pd

# Path to the object in Google Cloud Storage that you want to copy
sample_gcs_object = 'gs://path-to-gcs/Hello.txt.zip'

# Copy the file from Google Cloud Storage to Datalab
!gsutil cp $sample_gcs_object 'Hello.txt.zip'

# Unzip the file
!unzip 'Hello.txt.zip'

# Read the file into a pandas DataFrame
pandas_dataframe = pd.read_csv('Hello.txt')

关于google-cloud-storage - 从 Google Cloud Datalab 中的笔记本读取存储在 Google Cloud Storage 中 zip 文件中的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37593186/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com