Open In App

How to Install Pandas in Python?

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

Pandas in Python is a package that is written for data analysis and manipulation. Pandas offer various operations and data structures to perform numerical data manipulations and time series. Pandas is an open-source library that is built over Numpy libraries. Pandas library is known for its high productivity and high performance. Pandas are popular because they make importing and analyzing data much easier. Pandas programs can be written on any plain text editor like Notepad, notepad++, or anything of that sort and saved with a .py extension.

To begin with Install Pandas in Python, write Pandas Codes, and perform various intriguing and useful operations, one must have Python installed on their System.

Check if Python is Already Present

To check if your device is pre-installed with Python or not, just go to the Command line(search for cmd in the Run dialog( + R). Now run the following command: 

python --version

If Python is already installed, it will generate a message with the Python version available else install Python, for installing please visit: How to Install Python on Windows or Linux and PIP.

Install Python Pandas on Windows

Python version

Pandas can be installed in multiple ways on Windows, Linux, and MacOS. Various ways are listed below:

Import Pandas in Python

Now, that we have installed pandas on the system. Let’s see how we can import it to make use of it.
For this, go to a Jupyter Notebook or open a Python file, and write the following code:

import pandas as pd

Here, pd is referred to as an alias to the Pandas, which will help us in optimizing the code.

How to Install or Download Python Pandas

Pandas can be installed in multiple ways on Windows, Linux and MacOS. Various different ways are listed below:

Install Pandas on Windows

Python Pandas can be installed on Windows in two ways:

  • Using pip
  • Using Anaconda

Install Pandas using pip

PIP is a package management system used to install and manage software packages/libraries written in Python. These files are stored in a large “online repository” termed as Python Package Index (PyPI).

Step 1 : Launch Command Prompt

To open the Start menu, press the Windows key or click the Start button. To access the Command Prompt, type “cmd” in the search bar, click the displayed app, or use Windows key + r, enter “cmd,” and press Enter.

pppp

Command Prompt

Step 2 : Run the Command

Pandas can be installed using PIP by use of the following command in Command Prompt.

pip install pandas
pandas

Installed Pandas

Install Pandas using Anaconda

Anaconda is open-source software that contains Jupyter, spyder, etc that is used for large data processing, Data Analytics, and heavy scientific computing. If your system is not pre-equipped with Anaconda Navigator, you can learn how to install Anaconda Navigator on Windows or Linux. 

Install and Run Pandas from Anaconda Navigator

Step 1: Search for Anaconda Navigator in Start Menu and open it. 

Step 2: Click on the Environment tab and then click on the Create button to create a new Pandas Environment.

k1

Creating Environment

Step 3: Give a name to your Environment, e.g. Pandas, and then choose a Python and its version to run in the environment. Now click on the Create button to create Pandas Environment.

k2

Naming the environment and selecting version

Step 4: Now click on the Pandas Environment created to activate it. 

k3

Activate the environment

Step 5: In the list above package names, select All to filter all the packages.

k4

Getting all the packages

Step 6: Now in the Search Bar, look for ‘Pandas‘. Select the Pandas package for Installation. 

5

Selecting the package to install

Step 7: Now Right Click on the checkbox given before the name of the package and then go to ‘Mark for specific version installation‘. Now select the version that you want to install. 

6

Selecting the version for installation

Step 8: Click on the Apply button to install the Pandas Package. 

Step 9: Finish the Installation process by clicking on the Apply button. 

Step 10: Now to open the Pandas Environment, click on the Green Arrow on the right of the package name and select the Console with which you want to begin your Pandas programming. 

Pandas Terminal Window: 

Install Python Pandas on Anaconda

Pandas Terminal

Install Pandas on Linux

Install Pandas on Linux, just type the following command in the Terminal Window and press Enter. Linux will automatically download and install the packages and files required to run Pandas Environment in Python:

pip3 install pandas 

Install Pandas on MacOS

Install Pandas on MacOS, type the following command in the Terminal, and make sure that python is already installed in your system.

pip install pandas

Conclusion

With Pandas firmly installed, your Python journey into the data wilderness can begin. Remember, the installation process is just the first step, but a crucial one. So, saddle up, unleash the power of Pandas, and let your data analysis adventures commence!

Frequently Asked question(FAQs)

1. How do I install Pandas in Python?

There are three main options:

  • Pip: The simplest, using pip install pandas.
  • Anaconda: A comprehensive data science platform, including Pandas. Use conda install pandas within your Anaconda environment.
  • Manual download: Download the Pandas wheel file from PyPI and install with pip install [path-to-wheel-file].

2. Can I install a specific version of Pandas?

Yes, you can install a specific version of Pandas using the command pip install pandas==<version_number>, replacing <version_number> with the desired version.

3. How do I check the installed Pandas version?

You can check the installed Pandas version by running the following Python code: import pandas as pd; print(pd.__version__).

4. What if I get “dependency errors”?

Check if missing dependencies are installed first (pip list). If necessary, use pip install [missing package] to install them.



Last Updated : 14 Dec, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads