james
james
Most likely an issue with anaconda using the latest OpenEXR libraries (2.3.x) This module seems to ship with 1.3x with pip
> @nedwilson it works. openexr installed successfully. But when I tried to import openexr, a new error occured: > > > ImportError: dlopen(/anaconda/envs/tf1/lib/python2.7/site-packages/OpenEXR.so, 2): Symbol not found: __ZN7Imf_2_214TypedAttributeISsE13readValueFromERNS_7IStreamEii > >...
Here's an example of how I've modified the setup.py to account for my miniconda installation. [setup.txt](https://github.com/jamesbowman/openexrpython/files/2815845/setup.txt) The build is successful and when i run `otool -L build/lib.macosx-10.6-x86_64-2.7/OpenEXR.so` I get `@rpath/libIex-2_3.24.dylib...
I have solved the problem above by modifying the setup.py to the following: [setup.txt](https://github.com/jamesbowman/openexrpython/files/2815870/setup.txt) *Edit* Confirming that this works on OSX 10.13.6 with the openexr 2.3.0 libs from `conda install...
I was able to get it working with the following modifications to the required lib versions ``` torch==2.5.1 torchvision==0.20.1 xformers==0.0.29.post1 av==12.0.0 ```