pandas-Installation#

Mit Spack könnt ihr pandas in eurem Kernel bereitstellen, z.B. mit:

$ spack env activate python-311
$ spack install py-pandas

Alternativ könnt ihr pandas auch mit anderen Paketmanagern installieren, z.B. mit Pipenv.

Bemerkung

Falls ihr pipenv noch nicht installiert habt, findet ihr eine Anleitung hierzu unter Pipenv-Installation.

$ pipenv install pandas

Die Installation könnt Ihr dann überprüfen mit:

>>> import pandas as pd