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

Update macOS installation instructions #1382

Merged
merged 1 commit into from Apr 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
30 changes: 23 additions & 7 deletions docs/install.rst
Expand Up @@ -13,19 +13,35 @@ Install
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
<https://pkgs.org/download/openexr>`_ for a complete list. The common
ones that generally provide current releases include:
<https://pkgs.org/download/openexr>`_ for a complete list.

* `Fedora <https://packages.fedoraproject.org/pkgs/openexr/openexr/>`_
* `Gentoo <https://packages.gentoo.org/packages/media-libs/openexr>`_
* `Ubuntu <https://packages.ubuntu.com/source/kinetic/openexr>`_
RHEL/CentOS:

.. code-block::

$ sudo yum makecache
$ sudo yum install OpenEXR

Ubuntu:

.. code-block::

$ sudo apt-get update
$ sudo apt-get install openexr

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.

On macOS, we do not recommend installation via HomeBrew because the
distribution is outdated.
On macOS, install via `Homebrew <https://formulae.brew.sh/formula/openexr>`_:

.. code-block::

$ brew install openexr

We do not recommend installation via
`Macports <https://ports.macports.org/port/openexr>`_ 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
Expand Down