The Pandas library is not included with the regular Python installation. To use it, you need to install the Pandas platform separately.
The easiest way to install pandas is to install it as part of Anaconda, a cross-platform distribution for data analysis and scientific computing. This is the recommended installation method for most users.
Other pandas installation options are also available, the most popular being Pypi.
How to install pandas with PyPi
Pandas can be installed using pip from PyPI.
pip install pandas
To verify that the installation was successful by importing Pandas in Python just run:
import pandas as pd print(pd.__version__)
The output should show the version of Pandas that you have installed.
How to install pandas using anaconda
Once Anaconda is installed on your computer, simply run the following command to install pandas:
conda install pandas
With these simple commands, you can start using the Pandas library in Python. On my site you will find many articles and tips on how to use Pandas. I invite you to use the contents of my Pandas How To page.
Further step:
How to create Pandas empty dataframe