解决Pandas安装缺少_bz2模块
Centos 7 解决办法
yum install bzip2-devel
Ubuntu 解决办法
sudo apt-get install libbz2-dev
重新编译Python3
需要先执行上面的命令安装bzip2
cd Python-3.6.5
# ./configure --enable-optimizations # 不指定路径
./configure --prefix=/usr/local/python36 --enable-optimizations # 指定路径
sudo make && make install
本文来自博客园,作者:Jruing,转载请注明原文链接:https://www.cnblogs.com/jruing/p/17254840.html