Installation ============ GeoPandas depends for its spatial functionality on a large geospatial, open source stack of libraries (`GEOS`_, `GDAL`_, `PROJ`_). See the :ref:`dependencies` section below for more details. Those base C libraries can sometimes be a challenge to install. Therefore, we advise you to closely follow the recommendations below to avoid installation problems. .. _install-conda: Installing with Anaconda / conda -------------------------------- To install GeoPandas and all its dependencies, we recommend to use the `conda`_ package manager. This can be obtained by installing the `Anaconda Distribution`_ (a free Python distribution for data science), or through `miniconda`_ (minimal distribution only containing Python and the `conda`_ package manager). See also the `installation docs `__ for more information on how to install Anaconda or miniconda locally. The advantage of using the `conda`_ package manager is that it provides pre-built binaries for all the required and optional dependencies of GeoPandas for all platforms (Windows, Mac, Linux). To install the latest version of GeoPandas, you can then do:: conda install geopandas Using the conda-forge channel ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `conda-forge`_ is a community effort that provides conda packages for a wide range of software. It provides the *conda-forge* package channel for conda from which packages can be installed, in addition to the "*defaults*" channel provided by Anaconda. Depending on what other packages you are working with, the *defaults* channel or *conda-forge* channel may be better for your needs (e.g. some packages are available on *conda-forge* and not on *defaults*). GeoPandas and all its dependencies are available on the *conda-forge* channel, and can be installed as:: conda install --channel conda-forge geopandas .. note:: We strongly recommend to either install everything from the *defaults* channel, or everything from the *conda-forge* channel. Ending up with a mixture of packages from both channels for the dependencies of GeoPandas can lead to import problems. See the `conda-forge section on using multiple channels `__ for more details. Creating a new environment ^^^^^^^^^^^^^^^^^^^^^^^^^^ Creating a new environment is not strictly necessary, but given that installing other geospatial packages from different channels may cause dependency conflicts (as mentioned in the note above), it can be good practice to install the geospatial stack in a clean environment starting fresh. The following commands create a new environment with the name ``geo_env``, configures it to install packages always from conda-forge, and installs GeoPandas in it:: conda create -n geo_env conda activate geo_env conda config --env --add channels conda-forge conda config --env --set channel_priority strict conda install python=3 geopandas .. _install-pip: Installing with pip ------------------- GeoPandas can also be installed with pip, if all dependencies can be installed as well:: pip install geopandas .. _install-deps: .. warning:: When using pip to install GeoPandas, you need to make sure that all dependencies are installed correctly. Our main dependencies (`shapely`_, `pyproj`_, `fiona`_, `pyogrio`_, `rtree`_) provide binary wheels with dependencies included for Mac, Linux, and Windows. However, depending on your platform or Python version, there might be no pre-compiled wheels available, and then you need to compile and install their C dependencies manually. We refer to the individual packages for more details on installing those. Using conda (see above) avoids the need to compile the dependencies yourself. Installing from source ---------------------- You may install the latest development version by cloning the `GitHub` repository and using pip to install from the local directory:: git clone https://github.com/geopandas/geopandas.git cd geopandas pip install . It is also possible to install the latest development version directly from the GitHub repository with:: pip install git+git://github.com/geopandas/geopandas.git For installing GeoPandas from source, the same :ref:`note ` on the need to have all dependencies correctly installed applies. But, those dependencies can also be installed independently with conda before installing GeoPandas from source:: conda install pandas fiona shapely pyproj rtree See the :ref:`section on conda ` above for more details on getting running with Anaconda. .. _dependencies: Dependencies ------------ Required dependencies: - `numpy`_ - `pandas`_ (version 1.4 or later) - `shapely`_ (interface to `GEOS`_; version 1.8.0 or later) - `fiona`_ (interface to `GDAL`_; version 1.8.21 or later) - `pyproj`_ (interface to `PROJ`_; version 3.3.0 or later) - `packaging`_ Further, optional dependencies are: - `pyogrio`_ (optional; faster alternative for fiona, will become the default in GeoPandas 1.0) - `rtree`_ (optional; spatial index to improve performance and required for overlay operations; interface to `libspatialindex`_) - `psycopg2`_ (optional; for PostGIS connection) - `GeoAlchemy2`_ (optional; for writing to PostGIS) - `geopy`_ (optional; for geocoding) - `pointpats`_ (optional; for advanced point sampling) For plotting, these additional packages may be used: - `matplotlib`_ (>= 3.5.0) - `mapclassify`_ (>= 2.4.0) Using the optional PyGEOS dependency ------------------------------------ .. attention:: The Shapely 2.0 release absorbed all improvements from PyGEOS and the support of PyGEOS in GeoPandas is deprecated. Please use Shapely 2 instead. Historically, the fast implementations of basic spatial operations used to live in the `PyGEOS`_ package. Starting with GeoPandas 0.8, it is possible to optionally use those experimental speedups by installing PyGEOS. This can be done with conda (using the conda-forge channel) or pip:: # conda conda install pygeos --channel conda-forge # pip pip install pygeos More specifically, whether the PyGEOS is used or not is determined by: - If Shapely >= 2 is installed, it will be used by default. - If PyGEOS >= 0.8 and Shapely < 2 are installed, PyGEOS will be used by default - You can still toggle the use of PyGEOS when it is available, by: - Setting an environment variable (``USE_PYGEOS=0/1``). Note this variable is only checked at first import of GeoPandas. You can set this environment variable before starting the python process, or in your code right before importing geopandas: .. code-block:: python import os os.environ["USE_PYGEOS"] = "0" import geopandas - Setting an option: ``geopandas.options.use_pygeos = True/False``. Note, although this variable can be set during an interactive session, it will only work if the GeoDataFrames you use are created (e.g. reading a file with ``read_file``) after changing this value. .. attention:: Changing this option no longer works in all cases when Shapely >=2.0 is installed. In that case, use the environment variable (see option above) or simply use Shapely. .. warning:: The use of PyGEOS is deprecated! If you depend on PyGEOS, see the :doc:`migration guide <../docs/user_guide/pygeos_to_shapely>` to Shapely 2.0. Otherwise, use Shapely 2 directly. .. _PyPI: https://pypi.python.org/pypi/geopandas .. _GitHub: https://github.com/geopandas/geopandas .. _numpy: http://www.numpy.org .. _pandas: http://pandas.pydata.org .. _shapely: https://shapely.readthedocs.io .. _fiona: https://fiona.readthedocs.io .. _pyogrio: https://pyogrio.readthedocs.io .. _matplotlib: http://matplotlib.org .. _geopy: https://github.com/geopy/geopy .. _psycopg2: https://pypi.python.org/pypi/psycopg2 .. _GeoAlchemy2: https://geoalchemy-2.readthedocs.io/ .. _mapclassify: http://pysal.org/mapclassify .. _pyproj: https://github.com/pyproj4/pyproj .. _rtree: https://github.com/Toblerity/rtree .. _libspatialindex: https://github.com/libspatialindex/libspatialindex .. _conda: https://conda.io/en/latest/ .. _Anaconda distribution: https://www.anaconda.com/distribution/ .. _miniconda: https://docs.conda.io/en/latest/miniconda.html .. _conda-forge: https://conda-forge.org/ .. _GDAL: https://www.gdal.org/ .. _GEOS: https://geos.osgeo.org .. _PROJ: https://proj.org/ .. _PyGEOS: https://github.com/pygeos/pygeos/ .. _packaging: https://packaging.pypa.io/en/latest/ .. _pointpats: https://pysal.org/pointpats/