openexrpython
openexrpython copied to clipboard
OpenEXR bindings for Python
`pip3 install openexr` Using cached https://files.pythonhosted.org/packages/7c/c4/76bf884f59d3137847edf8b93aaf40f6257d8315d0064e8b1a606ad80b1b/OpenEXR-1.3.2.tar.gz Building wheels for collected packages: openexr Building wheel for openexr (setup.py) ... done Stored in directory: /home/zn/.cache/pip/wheels/41/06/9f/c7dc838815b0e7dfc7d7dc19cc3d677edb47594d8489adc62a Successfully built openexr Installing collected packages: openexr...
## System information - OS: macOS 10.15.7 (Catalina) - Python: 3.9 (installed w/Homebrew) - pip: 21.2.1 ## Steps to reproduce 1. `pip3 install --no-cache-dir openexr` ## Expected - package installs...
I had some issues with `pip install openexr` when trying to install this module on macOS latest version (at time of writing). I've not had the time to dig into...
It seems that the python bindings are incompatible with changes in the current version OpenExr 3.0 and Imath 3.0, which includes the splitting of Imath into a separate module. Installing...
Hi, thanks for the great work on this package! Do you have any plans to make a binary release on any repository? The last one (1.3.2) is a few years...
I'm trying to install openexr for python, so I first started with installing and building this repo (following the instructions as mentioned in [here](https://github.com/openexr/openexr/blob/master/INSTALL.md), I downloaded the repo and followed...
Hi James, I have built OpenEXR etc using the script provided at https://github.com/vfxpro99/usd-build-club However I can't link the ImathBox.h which has been built to C:\EXR\OPENEXR any tips would be awesome.....
When I try to install OpenEXR via pip I get the error shown below. Any recommendations on how to resolve this? Edit: I forgot to mention: * MacOS 10.14.6 *...
I installed the package in a conda environment with "pip3 install git+https://github.com/jamesbowman/openexrpython.git" Installation works fine, but when I run "import openexrpython" I get the error stated in the headline. Any...
When I run this: ``` import Imath as imath import numpy as np import OpenEXR ctype = imath.Channel(imath.PixelType(imath.PixelType.HALF)) target = '/tmp/test_exr.exr' data = {} chans = {} channels = list('RGBA')...