在没有GUI的情况下使用matplotlib
在vps上运行调用matplotlib的python脚本时需在import matplotlib.pyplot
前加上1
2import matplotlib as mpl
mpl.use('Agg')
一定要加在import matplotlib.pyplot
前
给pip更换源
将windows下的pip源换为清华的源
只需要在user文件夹下新建pip文件夹,并在其中新建pip.ini
文件,并写入:1
2[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
即可