0

我是 python 新手,正在尝试一些事情。我正在尝试使用 python 加载谷歌表,为此我正在使用 pygsheets。

但是每当我尝试将工作表加载到 Pandas 的数据框中时,它都会抛出错误:Segmentation Fault (core dumped)

我尝试用谷歌搜索很多东西。它说这主要是由于内存不足(RAM)错误。但是还没有找到解决这个问题的方法。

    gc = pygsheets.authorize(service_file = 'config file name') 
    work_sheet = gc.open('google_sheet_name')
sheet=work_sheet.worksheet_by_title(service)
    all_records = sheet.get_all_records() // this works fine. when I print all_records, I get the desired result.
df = sheet.get_as_df() // throws Segmentation fault.
4

0 回答 0