1.安装pandas
pip install pandas -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
2.安装matplotlib
pip install matplotlib -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
python运行:import matplotlib.pyplot as plt
报错:解决(可选之一,另外二见tensorflow1.1安装)
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
3.python 使用matplotlib画图问题:
解决: