大文件的Python Pandas read_csv导致内存崩溃

时间:2014-07-18 12:52:26

标签: python csv memory pandas

我尝试使用Pandas读取大型CSV文件。以下是我使用的库的版本:

Pandas' 0.14.1'

Numpy' 1.8.1'

CSV文件具有以下特征:

尺寸:1.9 GB

行:206,074

列:9

使用Eclipse运行我的代码,我收到以下错误:

filenameALL = 'C:/[path]/OutputALL.csv'
all    = pd.read_csv(filenameALL, sep='|', index_col=False, skiprows=[0,1,2], header=None, low_memory=False )

"Console already exited with value: -1073741819 while waiting for an answer."

问题是我的结尾还是熊猫的错误​​?

0 个答案:

没有答案