Python错误:小端编译器不支持大端缓冲区

Python错误:小端编译器不支持大端缓冲区,python,pandas,endianness,Python,Pandas,Endianness,当我运行我的python代码(一段非常简单的代码,之前已经测试过,没有发生这样的错误)时,我得到了以下错误: ValueError:小端编译器不支持大端缓冲区 我的代码(部分): self.crm_var1是pandas数据框听起来您没有为您的机器安装正确版本的pandas。其他panda函数是否有效?@danodonovan是的,它们有效请显示完整的堆栈跟踪 key = '|'.join(dealList) print key #key is the column name i'm sea

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

ValueError:小端编译器不支持大端缓冲区

我的代码(部分):


self.crm_var1是pandas数据框

听起来您没有为您的机器安装正确版本的
pandas
。其他panda函数是否有效?@danodonovan是的,它们有效请显示完整的堆栈跟踪
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)
    ...