4
我試圖導入pyplot但我的Python代碼將不會運行,卡在以下點:雖然從matplotlib進口pyplot它掛
from matplotlib import pyplot as plt
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "matplotlib/pyplot.py", line 24, in <module>
import matplotlib.colorbar
File "matplotlib/colorbar.py", line 29, in <module>
import matplotlib.collections as collections
File "matplotlib/collections.py", line 23, in <module>
import matplotlib.backend_bases as backend_bases
File "matplotlib/backend_bases.py", line 50, in <module>
import matplotlib.textpath as textpath
File "matplotlib/textpath.py", line 11, in <module>
import matplotlib.font_manager as font_manager
File "matplotlib/font_manager.py", line 1356, in <module>
_rebuild()
File "matplotlib/font_manager.py", line 1341, in _rebuild
fontManager = FontManager()
File "matplotlib/font_manager.py", line 989, in __init__
self.ttffiles = findSystemFonts(paths) + findSystemFonts()
File "matplotlib/font_manager.py", line 318, in findSystemFonts
for f in get_fontconfig_fonts(fontext):
File "matplotlib/font_manager.py", line 275, in get_fontconfig_fonts
output = pipe.communicate()[0]
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 791, in communicate
stdout = _eintr_retry_call(self.stdout.read)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 476, in _eintr_retry_call
return func(*args)
我曾嘗試使用PIP卸載matplotlib這樣我就可以重新安裝這個軟件包,但是這也會引發很長的錯誤列表。我在我的Mac OSX 10.11上運行這個。
當你說它卡住了,你的意思是它會引發異常,或掛起? –
我的意思是掛起。 – kekethetabbycat
你是如何在第一個地方安裝python和matplotlib的? – askewchan