Friday, May 21, 2021

Pandas-Installation

Open windows command prompt

type, pip install pandas

 

Since I already have pandas installed, requirement is already satisfied.

If you are installing as new, it will take some time. 

Jupyter notebook

Open a new python file and import pandas.

import pandas as pd

as pd here is called alias(other short name to call pandas)

 

No comments:

Post a Comment

Anaconda Installation

In this post we will discuss about Anaconda and its installation. Anaconda comes with number of applications(jupyter notebook included), dat...