熊猫不会导入(Python3.5)(Raspberry Pi 3)

时间:2018-06-13 20:32:40

标签: python python-3.x python-2.7 pandas matplotlib

我使用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。

1 个答案:

答案 0 :(得分:1)

我最终使用

卸载了matplotlib和pandas
sudo pip3 uninstall <module>

然后我用:

安装了pandas
sudo pip3 install -U pandas

然后再次使用:

安装matplotlib
sudo pip3 install matplotlib