Wie installiere ich NumPy?
Informationen zum Installieren der NumPy-Bibliothek finden Sie in unserem Tutorial zum Installieren von TensorFlow. NumPy wird standardmäßig mit Anaconda installiert.
Im Remote-Fall ist NumPy nicht installiert.
Sie können NumPy mit Anaconda installieren:
conda install -c anaconda numpy
- Im Jupyter-Notizbuch:
import sys!conda install --yes --prefix {sys.prefix} numpy
NumPy importieren und Version prüfen
Der Befehl zum Importieren von numpy lautet
import numpy as np
Der obige Code benennt den Numpy-Namespace in np um. Dies ermöglicht es uns, Numpy-Funktionen, -Methoden und -Attributen "np" voranzustellen, anstatt "numpy" einzugeben. Dies ist die Standardverknüpfung, die Sie in der Numpy-Literatur finden
Verwenden Sie den Befehl, um Ihre installierte Version von Numpy zu überprüfen
print (np.__version__)
Ausgabe
1.18.0