From 12dfbb0f55ddbc314402d128aa922a250ed1f37d Mon Sep 17 00:00:00 2001 From: gpotter2 Date: Fri, 19 Nov 2021 09:37:41 +0100 Subject: [PATCH 1/3] Provide install instructions for Ubuntu/Debian --- INSTALL | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/INSTALL b/INSTALL index 50371dd7e..3b8ce7696 100644 --- a/INSTALL +++ b/INSTALL @@ -65,6 +65,20 @@ To use it:: You can also use your system's package manager to install the dependencies. +Ubuntu / Debian +_______________ + +On debian, installing the dependencies should be as easy as:: + + sudo apt -y install libproj-dev libgeos-dev + +Then you can proveed to install cartopy using:: + + pip3 install cartopy + +MacOS +_____ + For macOS, the required dependencies can be installed in the following way:: brew install proj geos @@ -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. From a9ae2013e68b08badf25f8dc587d20d348888433 Mon Sep 17 00:00:00 2001 From: gpotter2 Date: Fri, 19 Nov 2021 16:37:56 +0100 Subject: [PATCH 2/3] Minor suggestions Co-authored-by: Greg Lucas --- INSTALL | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL b/INSTALL index 3b8ce7696..ebf39bef0 100644 --- a/INSTALL +++ b/INSTALL @@ -68,11 +68,11 @@ You can also use your system's package manager to install the dependencies. Ubuntu / Debian _______________ -On debian, installing the dependencies should be as easy as:: +On debian, you can install the required system libraries using the system package manager:: sudo apt -y install libproj-dev libgeos-dev -Then you can proveed to install cartopy using:: +Then you can proceed to install cartopy using a python package manager:: pip3 install cartopy From 9a6351d209d646de7025905732d110600e2e4fcd Mon Sep 17 00:00:00 2001 From: gpotter2 Date: Sat, 20 Nov 2021 13:16:02 +0100 Subject: [PATCH 3/3] Update INSTALL Co-authored-by: Elliott Sales de Andrade --- INSTALL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL b/INSTALL index ebf39bef0..d4f6b474a 100644 --- a/INSTALL +++ b/INSTALL @@ -68,7 +68,7 @@ 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:: +On Debian, you can install the required system libraries using the system package manager:: sudo apt -y install libproj-dev libgeos-dev