Python 2 Fehler importieren: Der Name pack_labeled_data kann nicht importiert werdenPython

Python-Programme
Anonymous
 Python 2 Fehler importieren: Der Name pack_labeled_data kann nicht importiert werden

Post by Anonymous »

Ich versuche, Numpy als NP zu importieren. Dies ist mein Code < /p>

import cv2
from matplotlib import pyplot as plt

img = cv2.imread('messi5.jpg',0)
plt.imshow(img, cmap = 'gray', interpolation = 'bicubic')
plt.xticks([]), plt.yticks([])
plt.show()
< /code>

, aber ich erhalte einen Fehler, < /p>

C:\Python27\pythonw.exe C:/Users/baqir/PycharmProjects/untitled/cdsk1.py
Traceback (most recent call last):
File "C:/Users/baqir/PycharmProjects/untitled/cdsk1.py", line 2, in
from matplotlib import pyplot as plt
File "C:\Python27\lib\site-packages\matplotlib\pyplot.py", line 29, in
from matplotlib.figure import Figure, figaspect
File "C:\Python27\lib\site-packages\matplotlib\figure.py", line 36, in
from matplotlib.axes import Axes, SubplotBase, subplot_class_factory
File "C:\Python27\lib\site-packages\matplotlib\axes\__init__.py", line 4, in
from ._subplots import *
File "C:\Python27\lib\site-packages\matplotlib\axes\_subplots.py", line 10, in
from matplotlib.axes._axes import Axes
File "C:\Python27\lib\site-packages\matplotlib\axes\_axes.py", line 14, in
from matplotlib import unpack_labeled_data

ImportError: cannot import name unpack_labeled_data `
< /code>

Ich habe es gegoogelt, aber keine Lösung gefunden. Kann jemand sagen, was ich hier falsch mache?

Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post