我尝试导入matplotlib.pyplot,但收到了与未安装python-tk相关的错误。它似乎已安装,但我似乎仍然收到错误。任何帮助都会被批评。有关详细信息,请输出如下。非常感谢。
$ ipython
Python 2.7.7 (default, Jun 3 2014, 16:16:56)
Type "copyright", "credits" or "license" for more information.
IPython 2.1.0 -- An enhanced Interactive Python.
? -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help -> Python's own help system.
object? -> Details about 'object', use 'object??' for extra details.
In [1]: import numpy as np
In [2]: import matplotlib.pyplot as plt
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-2-eff513f636fd> in <module>()
----> 1 import matplotlib.pyplot as plt
/usr/lib/pymodules/python2.7/matplotlib/pyplot.py in <module>()
96
97 from matplotlib.backends import pylab_setup
---> 98 _backend_mod, new_figure_manager, draw_if_interactive, _show = pylab_setup()
99
100
/usr/lib/pymodules/python2.7/matplotlib/backends/__init__.pyc in pylab_setup()
26 # imports. 0 means only perform absolute imports.
27 backend_mod = __import__(backend_name,
---> 28 globals(),locals(),[backend_name],0)
29
30 # Things we pull in from all backends
/usr/lib/pymodules/python2.7/matplotlib/backends/backend_tkagg.py in <module>()
6 import os.path
7
----> 8 import Tkinter as Tk, FileDialog
9
10 # Paint image to Tk photo blitter extension
/usr/lib/python2.7/lib-tk/Tkinter.py in <module>()
40 import _tkinter
41 except ImportError, msg:
---> 42 raise ImportError, str(msg) + ', please install the python-tk package'
43 tkinter = _tkinter # b/w compat for export
44 TclError = _tkinter.TclError
ImportError: libBLT.2.4.so.8.5: cannot open shared object file: No such file or directory, please install the python-tk package
答案 0 :(得分:4)
没有这样的文件或目录,请安装python-tk软件包
使用以下方法安装软件包:
sudo apt-get install python-tk
答案 1 :(得分:2)
作为临时安排,只需
mv libBLT.2.4.so.8.6 libBLT.2.4.so.8.5
在/ usr / lib /下。它应该再次正常工作
答案 2 :(得分:1)
请参阅debian bugreport: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=751767 (据我所知,matplotlib不依赖于&#34; blt&#34;)