赞
踩
博主是deepin的linux系统,在使用matplotlib进行绘制的时候,出现以下报错:
Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure
本文将对其进行解决
提示为non-gui,一些资料中提到是tkinter的问题。博主使用的pyenv,在这个python的虚拟环境中的确是可能缺少这样的依赖。
一些资料显示,直接通过sudo apt install python-tk
可以进行解决。
分析:
所以我们需要的是影响到pyenv环境的方法
sudo apt install tk-dev
# 导出之前安装的所有依赖库
pip freeze > requirement.txt
# 重新编译并且安装完python后,直接进行依赖库的全部安装
pip install -r requirement.txt
注:这里所提到的重新安装python,是指的用pyenv命令进行卸载和重装:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。