Jupyter Notebook Dieser Artikel ist für Anfänger.
import pandas as pd
Führen Sie Code wie aus
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-23-7dd3504c366f> in <module>
----> 1 import pandas as pd
ModuleNotFoundError: No module named 'pandas'
Wenn der Fehler auftritt.
Das Modul, das Sie ausführen wollten (z. B. Numpy oder Pandas), ist möglicherweise nicht auf Ihrem Jupyter-Notebook installiert.
!pip install pandas
Installieren Sie das Modul mit dem Befehl ! Pip
neu. Durch das Präfix "!" Können Sie Systembefehle auch auf einem Jupyter-Notebook ausführen.
Collecting numpy
Downloading https://files.pythonhosted.org/packages/7c/cd/5243645399c09bb5081e8d2847583f7a6b7cca55eb096a880eda0b602d4d/numpy-1.18.0-cp36-cp36m-macosx_10_9_x86_64.whl (15.2MB)
|████████████████████████████████| 15.2MB 48kB/s eta 0:00:016
Installing collected packages: numpy
Successfully installed numpy-1.18.0
Wenn die Installation auf diese Weise abgeschlossen ist, ist sie erfolgreich.
Versuchen Sie nach der Neuinstallation, das gewünschte Modul erneut mit "import" aufzurufen, wie in ↑ gezeigt.