我安装了 python3-pandas
sudo apt-get install python3-pandas
但我只有 0.13 版本。我谷歌了一下,发现我需要安装 .whl
pip3 install filename.whl
我需要注意“c”后面是我的 python 版本。我目前正在运行 python 3.4.3,我下载了
pandas-0.19.1-cp34-cp34m-manylinux1_x86_64.whl
我删除了熊猫
sudo apt-get remove python3-pandas
并尝试过
pip3 install pandas-0.19.1-cp34-cp34m-manylinux1_x86_64.whl
在正确的目录中(我的下载目录)。但我只得到了错误
pandas-0.19.1-cp34-cp34m-manylinux1_x86_64.whl is not a supported wheel on this platform.
Storing debug log for failure in /home/praktikant/.pip/pip.log
我真的不明白到底出了什么问题。