Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[doc] Provide install instructions for Ubuntu/Debian #1941

Merged
merged 3 commits into from
Nov 20, 2021
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,20 @@ To use it::

You can also use your system's package manager to install the dependencies.

Ubuntu / Debian
_______________

On debian, you can install the required system libraries using the system package manager::
gpotter2 marked this conversation as resolved.
Show resolved Hide resolved

sudo apt -y install libproj-dev libgeos-dev

Then you can proceed to install cartopy using a python package manager::

pip3 install cartopy

MacOS
_____

For macOS, the required dependencies can be installed in the following way::

brew install proj geos
Expand All @@ -83,6 +97,9 @@ Then you can install cartopy using::

pip3 install cartopy

Other
_____

If you are installing dependencies with a package manager on Linux, you may
need to install the development packages (look for a "-dev" or "-devel" suffix) in addition
to the core packages.
Expand Down