我使用pip3安装了pandas,numpy和matplotlib。导入numpy和matplotlib是成功的,但导入pandas会导致以下错误。
RuntimeError: module compiled against API version 0xc but this version of numpy is 0xa
RuntimeError: module compiled against API version 0xc but this version of numpy is 0xa
如果我卸载matplotlib并仅导入pandas和numpy,则会成功导入。
我已经在python2.7中安装了这些软件包,它们都可以导入。
我正在运行最新版本的Raspbian。
答案 0 :(得分:1)
我最终使用
卸载了matplotlib和pandassudo pip3 uninstall <module>
然后我用:
安装了pandassudo pip3 install -U pandas
然后再次使用:
安装matplotlibsudo pip3 install matplotlib