Python错误:little-endian编译器不支持big-endian缓冲区

时间:2013-05-24 14:16:57

标签: python pandas endianness

当我运行我的python代码(一段非常简单的代码,之前已经过测试且没有发生过这样的错误)时,我收到了这个错误:

ValueError:little-endian编译器不支持big-endian缓冲区

我的代码(部分):

key = '|'.join(dealList)

print key  #key is the column name i'm searching for
try:

    #use REGEX since dealID is not exactly the same as the col name
    dealVector0 = self.crm_var0.filter(regex=key)
    dealVector1 = self.crm_var1.filter(regex=key)
    ...

self.crm_var1是一个pandas数据帧

0 个答案:

没有答案