Python使用相关技巧

在没有GUI的情况下使用matplotlib

在vps上运行调用matplotlib的python脚本时需在import matplotlib.pyplot前加上

1
2
import 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

即可