在 Python virtualenv 中更改 matplotlib 后端
Posted
技术标签:
【中文标题】在 Python virtualenv 中更改 matplotlib 后端【英文标题】:Change matplotlib backend in Python virtualenv 【发布时间】:2016-12-23 05:49:34 【问题描述】:我使用 Python v2.7.12 安装了 virtualenv
和 pyenv。在这个 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)系统版本的链接,我不想这样做。我想使用virtualenv
中安装的matplotlib
的版本。
如果我尝试设置后端:
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')
结果为@987654363@。所以我尝试sudo apt-get install libgtk-3-dev
,但它说它已经安装了。
如何让 virtualenv 使用与我的系统相同的后端?
【问题讨论】:
您是否尝试过手动设置后端的明显解决方法? Like this. @AndrasDeak 请查看更新后的答案。 嗯,这很奇怪,因为at least tkinter should be installed, probably。不幸的是我对virtualenvs一无所知,所以我无能为力。 @Gabriel 我是您发布的第二个问题的答案的作者。我刚刚为 Python 2 尝试了我自己的答案,我可以确认它不像你所说的那样工作(虽然它对 Python 3 有效)。如果我能弄清楚发生了什么,让我回复你。 @Gabriel 我想我明白了,我发布了一个对我有用的答案。让我知道它是否适合您。 【参考方案1】:您可以考虑通过运行以下命令在 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
。
【讨论】:
我需要一些帮助才能在 conda 环境中执行此操作。我想更改为“GTKAgg”后端,并在我的 conda env 中安装了 pygtk,但我仍然收到Gtk* backend requires pygtk to be installed
错误。重新安装 matplotlib 没有帮助。
@Jason 你可能想问一个新问题,因为这个答案可能不适用于 conda 环境。以上是关于在 Python virtualenv 中更改 matplotlib 后端的主要内容,如果未能解决你的问题,请参考以下文章
MySQL-python 未安装在 virtualenv 中(EnvironmentError: mysql_config not found)
virtualenvwrapper 虚拟环境的使用 和 python 安装源的更改