Overview
This guide shows how to install Pandas. Pandas is an open source library providing high-performance, easy-to-use data structures and data analysis tools for the Python programming language
Prerequisites
- Python has been installed
- Optional but recommended. Setup a VirtualEnvironment and Pip has been installed.
Installation
01. Activate your virtual environment, or skip this step if not using virtual environment.
$ source {{virtual-env-directory}}/bin/activate
02. Install the Pandas package
(geek-venv) $ pip install pandas
03. Verify the Pandas has been installed by viewing the version.
(geek-venv) $ pip freeze | grep pandas