Pandas

1. Overview

pandas is a fast, powerful, flexible and easy to use open source data analysis and manipulation tool, built on top of the Python programming language.

2. Install

https://pandas.pydata.org/docs/getting_started/install.htmlarrow-up-right

2.1. Installing from PyPI

pip install pandas

pandas can also be installed with sets of optional dependencies to enable certain functionality. For example, to install pandas with the optional dependencies to read Excel files.

All optional dependencies can be installed with pandas[all]:

The full list of extras that can be installed can be found in the dependency sectionarrow-up-right.

Note:

You are highly encouraged to install performance dependencies, as they provide speed improvements, especially when working with large data sets.

2.2. Installing with Anaconda

Anaconda: https://docs.continuum.io/anacondaarrow-up-right

The simplest way to install not only pandas, but Python and the most popular packages that make up the SciPyarrow-up-right stack (IPythonarrow-up-right, NumPyarrow-up-right, Matplotlibarrow-up-right, ...) is with Anacondaarrow-up-right, a cross-platform (Linux, macOS, Windows) Python distribution for data analytics and scientific computing.

2.3. Installing with Miniconda

Miniconda: https://docs.conda.io/en/latest/miniconda.htmlarrow-up-right

Miniconda is a free minimal installer for conda.

Condaarrow-up-right is the package manager that the Anaconda distribution is built upon. It is a package manager that is both cross-platform and language agnostic (it can play a similar role to a pip and virtualenv combination).

Last updated