我已使用Python v2.7.12在pyenv上安装了virtualenv
。在这个virtualenv中,我通过:
matplotlib
v1.5.1
pip install matplotlib
没有问题。问题是简单的
import matplotlib.pyplot as plt
plt.scatter([], [])
plt.show()
脚本无法生成绘图窗口。我在virtualenv中看到的后端使用:
import matplotlib
print matplotlib.rcParams['backend']
是agg
,这显然是问题的根本原因。如果我在系统范围的安装中检查后端,我会得到Qt4Agg
(上面的脚本在运行时显示一个绘图窗口就好了。)
在SO中已经有几个类似的问题了,我已经尝试了所有这些问题的解决方案。
Matplotlib plt.show() isn't showing graph
尝试使用--system-site-packages选项创建virtualenv。不行。
How to ensure matplotlib in a Python 3 virtualenv uses the TkAgg backend?
已安装sudo apt install tk-dev
,然后使用pip --no-cache-dir install -U --force-reinstall matplotlib
重新安装。后端仍显示为agg
。
Matplotlib doesn't display graph in virtualenv
this answer中提供的关注安装说明,什么也没做(其他答案涉及使用easy_install
,I will not do)
matplotlib plot window won't appear
这里给出的解决方案是"安装GUI库(Tkinter,GTK,QT4,PySide,Wx之一)" 。我不知道该怎么做。此外,如果我使用:
import matplotlib.rcsetup as rcsetup
print(rcsetup.all_backends)
我明白了:
[u'GTK', u'GTKAgg', u'GTKCairo', u'MacOSX', u'Qt4Agg', u'Qt5Agg', u'TkAgg', u'WX', u'WXAgg', u'CocoaAgg', u'GTK3Cairo', u'GTK3Agg', u'WebAgg', u'nbAgg', u'agg', u'cairo', u'emf', u'gdk', u'pdf', u'pgf', u'ps', u'svg', u'template']
意味着所有后端 在我的系统中都可用(?)。
matplotlib does not show my drawings although I call pyplot.show()
我的matplotlibrc
文件显示以下行:
backend : Qt4Agg
我不知道如何让virtualenv意识到这一点?
有些解决方案涉及创建matplotlib
(here和here)系统版本的链接,我不想这样做。我想使用matplotlib
中安装的virtualenv
版本。
如果我尝试设置后端:
import matplotlib
matplotlib.use('GTKAgg')
我得到ImportError: Gtk* backend requires pygtk to be installed
(与GTK
相同)。但如果我sudo apt-get install python-gtk2 python-gtk2-dev
,我发现它们都已安装。
使用:
import matplotlib
matplotlib.use('Qt4Agg')
(或Qt5Agg
)会导致ImportError: Matplotlib qt-based backends require an external PyQt4, PyQt5, or PySide package to be installed, but it was not found.
不确定是否应安装某个软件包?
使用:
import matplotlib
matplotlib.use('TkAgg')
结果为ImportError: No module named _tkinter
,但sudo apt-get install python-tk
表示已安装。
使用:
import matplotlib
matplotlib.use('GTKCairo')
结果为ImportError: No module named gtk
。所以我尝试sudo apt-get install libgtk-3-dev
,但它说它已经安装了。
如何让virtualenv使用与我的系统使用相同的后端?
答案 0 :(得分:3)
您可以考虑运行以下内容,在Python 2 virtualenv中将后端更改为TkAgg
:
sudo apt install python-tk # install Python 2 bindings for Tk
pip --no-cache-dir install -U --force-reinstall matplotlib # reinstall matplotlib
要确认后端确实是TkAgg
,请运行
python -c 'import matplotlib as mpl; print(mpl.get_backend())'
您应该看到TkAgg
。