How to install pandas in python 3.6?

Python packages make the language more unique and efficient. Apart from the inbuilt packages, there are too many external packages written and attached to Python. If you want to use these packages you simply have to install them.
Pandas is also a python package. Pandas is a popular Python-based data analysis toolkit which can be imported using import pandas as pd. It presents a diverse range of utilities, ranging from parsing multiple file formats to converting an entire data table into a NumPy matrix array. This makes pandas a trusted ally in data science and machine learning.
Install pandas
There is a very easy way to install pandas package in python.
Open the command prompt and write the following command.
pip install pandas

In this way you can install pandas and use it wherever you want.