.. _install: .. currentmodule:: pandas ============ Installation ============ The easiest way for the majority of users to install pandas is to install it as part of the `Anaconda `__ distribution, a cross platform distribution for data analysis and scientific computing. This is the recommended installation method for most users. Instructions for installing from source, `PyPI `__, various Linux distributions, or a `development version `__ are also provided. Python version support ---------------------- Officially Python 2.7, 3.4, 3.5, and 3.6 Installing pandas ----------------- Trying out pandas, no installation required! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The easiest way to start experimenting with pandas doesn't involve installing pandas at all. `Wakari `__ is a free service that provides a hosted `IPython Notebook `__ service in the cloud. Simply create an account, and have access to pandas from within your brower via an `IPython Notebook `__ in a few minutes. .. _install.anaconda: Installing pandas with Anaconda ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Installing pandas and the rest of the `NumPy `__ and `SciPy `__ stack can be a little difficult for inexperienced users. The simplest way to install not only pandas, but Python and the most popular packages that make up the `SciPy `__ stack (`IPython `__, `NumPy `__, `Matplotlib `__, ...) is with `Anaconda `__, a cross-platform (Linux, Mac OS X, Windows) Python distribution for data analytics and scientific computing. After running a simple installer, the user will have access to pandas and the rest of the `SciPy `__ stack without needing to install anything else, and without needing to wait for any software to be compiled. Installation instructions for `Anaconda `__ `can be found here `__. A full list of the packages available as part of the `Anaconda `__ distribution `can be found here `__. An additional advantage of installing with Anaconda is that you don't require admin rights to install it, it will install in the user's home directory, and this also makes it trivial to delete Anaconda at a later date (just delete that folder). .. _install.miniconda: Installing pandas with Miniconda ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The previous section outlined how to get pandas installed as part of the `Anaconda `__ distribution. However this approach means you will install well over one hundred packages and involves downloading the installer which is a few hundred megabytes in size. If you want to have more control on which packages, or have a limited internet bandwidth, then installing pandas with `Miniconda `__ may be a better solution. `Conda `__ 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). `Miniconda `__ allows you to create a minimal self contained Python installation, and then use the `Conda `__ command to install additional packages. First you will need `Conda `__ to be installed and downloading and running the `Miniconda `__ will do this for you. The installer `can be found here `__ The next step is to create a new conda environment (these are analogous to a virtualenv but they also allow you to specify precisely which Python version to install also). Run the following commands from a terminal window:: conda create -n name_of_my_env python This will create a minimal environment with only Python installed in it. To put your self inside this environment run:: source activate name_of_my_env On Windows the command is:: activate name_of_my_env The final step required is to install pandas. This can be done with the following command:: conda install pandas To install a specific pandas version:: conda install pandas=0.13.1 To install other packages, IPython for example:: conda install ipython To install the full `Anaconda `__ distribution:: conda install anaconda If you require any packages that are available to pip but not conda, simply install pip, and use pip to install these packages:: conda install pip pip install django Installing from PyPI ~~~~~~~~~~~~~~~~~~~~ pandas can be installed via pip from `PyPI `__. :: pip install pandas This will likely require the installation of a number of dependencies, including NumPy, will require a compiler to compile required bits of code, and can take a few minutes to complete. Installing using your Linux distribution's package manager. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The commands in this table will install pandas for Python 2 from your distribution. To install pandas for Python 3 you may need to use the package ``python3-pandas``. .. csv-table:: :header: "Distribution", "Status", "Download / Repository Link", "Install method" :widths: 10, 10, 20, 50 Debian, stable, `official Debian repository `__ , ``sudo apt-get install python-pandas`` Debian & Ubuntu, unstable (latest packages), `NeuroDebian `__ , ``sudo apt-get install python-pandas`` Ubuntu, stable, `official Ubuntu repository `__ , ``sudo apt-get install python-pandas`` Ubuntu, unstable (daily builds), `PythonXY PPA `__; activate by: ``sudo add-apt-repository ppa:pythonxy/pythonxy-devel && sudo apt-get update``, ``sudo apt-get install python-pandas`` OpenSuse, stable, `OpenSuse Repository `__ , ``zypper in python-pandas`` Fedora, stable, `official Fedora repository `__ , ``dnf install python-pandas`` Centos/RHEL, stable, `EPEL repository `__ , ``yum install python-pandas`` Installing from source ~~~~~~~~~~~~~~~~~~~~~~ See the :ref:`contributing documentation ` for complete instructions on building from the git source tree. Further, see :ref:`creating a development environment ` if you wish to create a *pandas* development environment. Running the test suite ~~~~~~~~~~~~~~~~~~~~~~ pandas is equipped with an exhaustive set of unit tests covering about 97% of the codebase as of this writing. To run it on your machine to verify that everything is working (and you have all of the dependencies, soft and hard, installed), make sure you have `nose `__ and run: :: >>> import pandas as pd >>> pd.test() Running unit tests for pandas pandas version 0.18.0 numpy version 1.10.2 pandas is installed in pandas Python version 2.7.11 |Continuum Analytics, Inc.| (default, Dec 6 2015, 18:57:58) [GCC 4.2.1 (Apple Inc. build 5577)] nose version 1.3.7 ..................................................................S...... ........S................................................................ ......................................................................... ---------------------------------------------------------------------- Ran 9252 tests in 368.339s OK (SKIP=117) Dependencies ------------ * `setuptools `__ * `NumPy `__: 1.7.1 or higher * `python-dateutil `__: 1.5 or higher * `pytz `__: Needed for time zone support .. _install.recommended_dependencies: Recommended Dependencies ~~~~~~~~~~~~~~~~~~~~~~~~ * `numexpr `__: for accelerating certain numerical operations. ``numexpr`` uses multiple cores as well as smart chunking and caching to achieve large speedups. If installed, must be Version 2.1 or higher (excluding a buggy 2.4.4). Version 2.4.6 or higher is highly recommended. * `bottleneck `__: for accelerating certain types of ``nan`` evaluations. ``bottleneck`` uses specialized cython routines to achieve large speedups. .. note:: You are highly encouraged to install these libraries, as they provide large speedups, especially if working with large data sets. .. _install.optional_dependencies: Optional Dependencies ~~~~~~~~~~~~~~~~~~~~~ * `Cython `__: Only necessary to build development version. Version 0.23 or higher. * `SciPy `__: miscellaneous statistical functions * `xarray `__: pandas like handling for > 2 dims, needed for converting Panels to xarray objects. Version 0.7.0 or higher is recommended. * `PyTables `__: necessary for HDF5-based storage. Version 3.0.0 or higher required, Version 3.2.1 or higher highly recommended. * `Feather Format `__: necessary for feather-based storage, version 0.3.1 or higher. * `SQLAlchemy `__: for SQL database support. Version 0.8.1 or higher recommended. Besides SQLAlchemy, you also need a database specific driver. You can find an overview of supported drivers for each SQL dialect in the `SQLAlchemy docs `__. Some common drivers are: - `psycopg2 `__: for PostgreSQL - `pymysql `__: for MySQL. - `SQLite `__: for SQLite, this is included in Python's standard library by default. * `matplotlib `__: for plotting * For Excel I/O: * `xlrd/xlwt `__: Excel reading (xlrd) and writing (xlwt) * `openpyxl `__: openpyxl version 1.6.1 or higher (but lower than 2.0.0), or version 2.2 or higher, for writing .xlsx files (xlrd >= 0.9.0) * `XlsxWriter `__: Alternative Excel writer * `Jinja2 `__: Template engine for conditional HTML formatting. * `s3fs `__: necessary for Amazon S3 access (s3fs >= 0.0.7). * `blosc `__: for msgpack compression using ``blosc`` * One of `PyQt4 `__, `PySide `__, `pygtk `__, `xsel `__, or `xclip `__: necessary to use :func:`~pandas.read_clipboard`. Most package managers on Linux distributions will have ``xclip`` and/or ``xsel`` immediately available for installation. * Google's `python-gflags <`__ , `oauth2client `__ , `httplib2 `__ and `google-api-python-client `__ : Needed for :mod:`~pandas.io.gbq` * `Backports.lzma `__: Only for Python 2, for writing to and/or reading from an xz compressed DataFrame in CSV; Python 3 support is built into the standard library. * One of the following combinations of libraries is needed to use the top-level :func:`~pandas.read_html` function: * `BeautifulSoup4`_ and `html5lib`_ (Any recent version of `html5lib`_ is okay.) * `BeautifulSoup4`_ and `lxml`_ * `BeautifulSoup4`_ and `html5lib`_ and `lxml`_ * Only `lxml`_, although see :ref:`HTML reading gotchas ` for reasons as to why you should probably **not** take this approach. .. warning:: * if you install `BeautifulSoup4`_ you must install either `lxml`_ or `html5lib`_ or both. :func:`~pandas.read_html` will **not** work with *only* `BeautifulSoup4`_ installed. * You are highly encouraged to read :ref:`HTML reading gotchas `. It explains issues surrounding the installation and usage of the above three libraries * You may need to install an older version of `BeautifulSoup4`_: Versions 4.2.1, 4.1.3 and 4.0.2 have been confirmed for 64 and 32-bit Ubuntu/Debian * Additionally, if you're using `Anaconda`_ you should definitely read :ref:`the gotchas about HTML parsing libraries ` .. note:: * if you're on a system with ``apt-get`` you can do .. code-block:: sh sudo apt-get build-dep python-lxml to get the necessary dependencies for installation of `lxml`_. This will prevent further headaches down the line. .. _html5lib: https://github.com/html5lib/html5lib-python .. _BeautifulSoup4: http://www.crummy.com/software/BeautifulSoup .. _lxml: http://lxml.de .. _Anaconda: https://store.continuum.io/cshop/anaconda .. note:: Without the optional dependencies, many useful features will not work. Hence, it is highly recommended that you install these. A packaged distribution like `Anaconda `__, or `Enthought Canopy `__ may be worth considering.