Ubuntu16.04 配置python环境,解决无法显示中文问题
1、下载python中文字体
网上直接搜SimHei.ttf ,这个随意写一个http://xiazaiziti.com/210356.html
2、 安装 matplotlib
Python 2.7
sudo apt-get install python-matplotlib
python 3.5
sudo apt-get install python3-matplotlib
3、Python在linux下的字体集位置
Locate -b “mpl-data”
/usr/share/matplotlib/mpl-data
/home/xxx/.local/lib/python2.7/site-packages/matplotlib/
如果有3.5的话再另外一个路径
4、 Mathplotlib支持汉字
SimHei.ttf拷贝到
/usr/share/matplotlib/mpl-data/fonts/ttf/
5、修改配置
/etc/mathplotlibrc
增加如下几行
font.family : sans-serif
font.sans-serif : SimHei
axes.unicode_minus : False
清空缓存
rm ~/.cache/matplotlib/ -rf