ubuntu系统中pip 安装pandas出错的解决方案:

ubuntu系统中pip 安装pandas出错,可能和numpy等版本冲突,或者给我安装了新的版本的numpy,导致tensorflow版本 也有问题,系统的版本一团糟

终于找到了解决方法:

#如果使用python3 
sudo apt-get install python3-pandas
#如果使用python2
sudo apt-get install python-pandas

ubuntu系统中pip 安装pandas出错的解决方案_版本冲突