在Linux服务器上运行Python2应用程序时,如果想保存matplotlib绘图但不显示,可以使用以下方法:
import matplotlib.pyplot as plt
# 绘制图形
plt.plot([1, 2, 3, 4], [1, 4, 9, 16])
# 保存图形为PNG格式图片
plt.savefig('/path/to/save/image.png')
import matplotlib.pyplot as plt
# 创建Figure对象
fig = plt.figure()
# 绘制图形
plt.plot([1, 2, 3, 4], [1, 4, 9, 16])
# 保存图形为PNG格式图片
fig.savefig('/path/to/save/image.png')
这两种方法都可以将绘图保存为图片文件,保存后可以在服务器上查看图片或下载到本地进行查看。注意,保存图片的路径需要根据实际情况进行修改。
推荐的腾讯云相关产品:腾讯云服务器(CVM)、腾讯云对象存储(COS)。
以上是关于在Linux服务器上运行Python2应用程序时保存matplotlib绘图但不显示的解决方法和推荐的腾讯云相关产品。希望对您有帮助!
领取专属 10元无门槛券
手把手带您无忧上云