pandas installation¶
With Spack you can provide pandas in your kernel, for example with:
$ spack env activate python-311
$ spack install py-pandas
Alternatively, you can also install pandas with other package managers, for example with Pipenv.
Note
If you have not yet installed pipenv, you can find instructions on how to do this in Pipenv installation <python4datascience:productive/envs/pipenv/install>.
$ pipenv install pandas
You can then check the installation with:
>>> import pandas as pd