From 7cebe813135ae70087a2c1fcc734d1c3962682ef Mon Sep 17 00:00:00 2001 From: Cary Phillips Date: Tue, 9 Jan 2024 16:08:51 -0800 Subject: [PATCH 1/3] Update MacPorts install instructions Signed-off-by: Cary Phillips --- website/install.rst | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/website/install.rst b/website/install.rst index 8a0d265861..2601282fc9 100644 --- a/website/install.rst +++ b/website/install.rst @@ -39,15 +39,12 @@ On macOS, install via `Homebrew `_: % brew install openexr -We do not recommend installation via -`Macports `_ because the -distribution is out of date. - -Also note that the official OpenEXR project does not provide supported -python bindings. ``pip install openexr`` installs the `openexrpython -`_ module, which is not -affiliated with the OpenEXR project or the ASWF. Please direct -questions there. +Alternatively, you can install on macOS via `MacPorts +`_: + +.. code-block:: + + % sudo port install openexr Build from Source ----------------- From 252568534040d5f92ca3a4ed13e76d4e7e784ce4 Mon Sep 17 00:00:00 2001 From: Cary Phillips Date: Thu, 11 Jan 2024 09:10:01 -0800 Subject: [PATCH 2/3] remove sudo Signed-off-by: Cary Phillips --- website/install.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/install.rst b/website/install.rst index 2601282fc9..b252402b31 100644 --- a/website/install.rst +++ b/website/install.rst @@ -44,7 +44,7 @@ Alternatively, you can install on macOS via `MacPorts .. code-block:: - % sudo port install openexr + % port install openexr Build from Source ----------------- From 8a7691bd5ae2fbcad21ece56838cb492d550dd52 Mon Sep 17 00:00:00 2001 From: Cary Phillips Date: Thu, 11 Jan 2024 09:17:25 -0800 Subject: [PATCH 3/3] mention vcpkg for Windows Signed-off-by: Cary Phillips --- website/install.rst | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/website/install.rst b/website/install.rst index b252402b31..7f1d8aee27 100644 --- a/website/install.rst +++ b/website/install.rst @@ -10,6 +10,9 @@ Install .. toctree:: :caption: Install +Linux +----- + The OpenEXR library is available for download and installation in binary form via package managers on many Linux distributions. See `https://pkgs.org/download/openexr @@ -33,6 +36,9 @@ Beware that some distributions are out of date and only provide distributions of outdated releases OpenEXR. We recommend against using OpenEXR v2, and we *strongly* recommend against using OpenEXR v1. +macOS +----- + On macOS, install via `Homebrew `_: .. code-block:: @@ -46,6 +52,16 @@ Alternatively, you can install on macOS via `MacPorts % port install openexr +Windows +------- + +Install via `vcpkg `_: + +.. code-block:: + + % .\vcpkg install openexr + + Build from Source -----------------