How to Install Geopandas on MacOS?
Last Updated :
17 Sep, 2021
In this article, we will learn how to install GeoPandas in Python on MacOS. GeoPandas is a project to add support for geographic data to pandas objects.
Installation:
Method 1: Using pip to install GeoPandas
Follow the below steps to install the GeoPandas package on macOS using pip:
Step 1: Install latest Python3 in MacOS
Step 2: Check if pip3 and python3 are correctly installed.
python3 --version
pip3 --version
Step 3: Upgrade your pip to avoid errors during installation.
pip3 install --upgrade pip
Step 4: Enter the following command to install GeoPandas using pip3.
pip3 install geopandas

Method 2: Using setup.py to install GeoPandas
Follow the below steps to install the GeoPandas package on macOS using the setup.py file:
Step 1: Download the latest source package of GeoPandas for python3 from here.
curl https://files.pythonhosted.org/packages/9b/59/3b0907ae8128f81db5cd978d95e6cd6aa2b0ce19884833c37f65deaaca44/geopandas-0.9.0.tar.gz > geopandas.tar.gz
Step 2: Extract the downloaded package using the following command.
tar -xzvf geopandas.tar.gz
Step 3: Go inside the folder and Enter the following command to install the package.
cd geopandas-0.9.0
python3 setup.py install

Verifying GeoPandas installation on macOS:
Make the following import in your python terminal to verify if the installation has been done properly:
import geopandas
If there is any error while importing the module then is not installed properly.
Similar Reads
How to Install Anaconda on MacOS? In this article, we will learn how to install Anaconda on MacOS. Anaconda is a distribution of the Python and R programming languages for scientific computing, that aims to simplify package management and deployment. Installation using Graphical Interface Step 1: Download the Graphical installer fro
1 min read
How to Install GIMP on MacOS? GIMP is an acronym for GNU IMAGE MANIPULATION PROGRAM. It is free computer software that was designed for performing tasks like digital painting, image editing, designing high-quality graphics, etc. It is open-source software that was launched in 1998. The credit of its development goes to the devel
2 min read
How to Install Boto3 on MacOS? Boto3 is a python module created by Amazon Web service for implementing software and deploying them on the internet. It is very useful for developing large projects in different companies. It supports Elastic Compute Cloud, Cloudwatch, and many other cloud platforms. Boto3 is the latest version of B
2 min read
How to Install Geopandas on Windows? Geopandas is a Python library used to add geographical data to pandas as an object. In this article, we will look into the process of installing Geopandas on a windows machine. Pre-requisites: The only thing that you need for installing Numpy on Windows are: Python PIP or Conda (depending upon user
2 min read
How to Install Geopandas in Kaggle GeoPandas simplifies working with geospatial data. It extends the functionality of pandas by adding support for geographic objects such as points, lines, and polygons. If you're using Kaggle for your data analysis or machine learning projects, you can easily install and use GeoPandas to handle geosp
2 min read