python - tkinter、python 和 seaborn 问题 : _tkinter. TclError:没有显示名称,也没有 $DISPLAY 环境变量

标签 python python-2.7 matplotlib tkinter seaborn

故事

pandas, numpy, seaborn, matplotlib 在系统上安装无误。我从 http://seaborn.pydata.org/examples/many_pairwise_correlations.html 中获取了这个代码示例

片段

from string import letters
import numpy as np
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt

sns.set(style="white")

# Generate a large random dataset
rs = np.random.RandomState(33)
d = pd.DataFrame(data=rs.normal(size=(100, 26)),
                 columns=list(letters[:26]))

# Compute the correlation matrix
corr = d.corr()

# Generate a mask for the upper triangle
mask = np.zeros_like(corr, dtype=np.bool)
mask[np.triu_indices_from(mask)] = True

# Set up the matplotlib figure
f, ax = plt.subplots(figsize=(11, 9))

# Generate a custom diverging colormap
cmap = sns.diverging_palette(220, 10, as_cmap=True)

# Draw the heatmap with the mask and correct aspect ratio
sns.heatmap(corr, mask=mask, cmap=cmap, vmax=.3,
            square=True, xticklabels=5, yticklabels=5,
            linewidths=.5, cbar_kws={"shrink": .5}, ax=ax)

它会导致以下错误:

Traceback (most recent call last):
  File "seaborn-example.py", line 4, in <module>
    import seaborn as sns
  File "/usr/local/lib/python2.7/site-packages/seaborn/__init__.py", line 6, in <module>
    from .rcmod import *
  File "/usr/local/lib/python2.7/site-packages/seaborn/rcmod.py", line 8, in <module>
    from . import palettes, _orig_rc_params
  File "/usr/local/lib/python2.7/site-packages/seaborn/palettes.py", line 12, in <module>
    from .utils import desaturate, set_hls_values, get_color_cycle
  File "/usr/local/lib/python2.7/site-packages/seaborn/utils.py", line 12, in <module>
    import matplotlib.pyplot as plt
  File "/usr/local/lib/python2.7/site-packages/matplotlib/pyplot.py", line 115, in <module>
    _backend_mod, new_figure_manager, draw_if_interactive, _show = pylab_setup()
  File "/usr/local/lib/python2.7/site-packages/matplotlib/backends/__init__.py", line 32, in pylab_setup
    globals(),locals(),[backend_name],0)
  File "/usr/local/lib/python2.7/site-packages/matplotlib/backends/backend_tkagg.py", line 6, in <module>
    from six.moves import tkinter as Tk
  File "/usr/local/lib/python2.7/site-packages/six.py", line 203, in load_module
    mod = mod._resolve()
  File "/usr/local/lib/python2.7/site-packages/six.py", line 115, in _resolve
    return _import_module(self.mod)
  File "/usr/local/lib/python2.7/site-packages/six.py", line 82, in _import_module
    __import__(name)
  File "/usr/local/lib/python2.7/lib-tk/Tkinter.py", line 39, in <module>
    import _tkinter # If this fails your Python may not be configured for Tk
ImportError: No module named _tkinter

引用Install tkinter for Python用于安装 tkinter

yum install -y tkinter tk-devel

然后我按照这个来重建 Python

https://github.com/h2oai/h2o-2/wiki/installing-python-2.7-on-centos-6.3.-follow-this-sequence-exactly-for-centos-machine-only

当我尝试重建时得到了这个 - tkinter 仍然存在一些问题:

  Traceback (most recent call last):
  File "seaborn-example.py", line 22, in <module>
    f, ax = plt.subplots(figsize=(11, 9))
  File "/usr/local/lib/python2.7/site-packages/matplotlib/pyplot.py", line 1203, in subplots
    fig = figure(**fig_kw)
  File "/usr/local/lib/python2.7/site-packages/matplotlib/pyplot.py", line 535, in figure
    **kwargs)
  File "/usr/local/lib/python2.7/site-packages/matplotlib/backends/backend_tkagg.py", line 81, in new_figure_manager
    return new_figure_manager_given_figure(num, figure)
  File "/usr/local/lib/python2.7/site-packages/matplotlib/backends/backend_tkagg.py", line 89, in new_figure_manager_given_figure
    window = Tk.Tk()
  File "/usr/local/lib/python2.7/lib-tk/Tkinter.py", line 1745, in __init__
    self.tk = _tkinter.create(screenName, baseName, className, interactive, wantobjects, useTk, sync, use)
_tkinter.TclError: no display name and no $DISPLAY environment variable

这里有什么问题?

最佳答案

文件开头

import matplotlib
matplotlib.use('Agg')

关于python - tkinter、python 和 seaborn 问题 : _tkinter. TclError:没有显示名称,也没有 $DISPLAY 环境变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41951310/

相关文章:

Python 更改字符串的打印方式

python - 在 Python 中合并两个 CSV 文件

python - 当带有子图的图形从 python3.2 中的 matplotlib 保存为 pdf 时创建的空 pdf

python - 使用 seaborn jointplot 更改每个点的颜色和标记

python - Python 2.6.6和 hive 连接问题?

Python 类定义语法

python - 使用 pyinstaller 和 mayavi 导入创建独立的 exe

python - Django(1.4.2)出现如下错误如何解决

python - 使用字典中的常见值在 python 中绘制图形

python - 如何计算分组/数据透视表中特定响应的百分比?