MacOS pip install pyexr 引发 OpenEXR.cpp:37:10:致命错误:找不到“ImfIO.h”文件

时间:2021-05-05 12:46:48

标签: python openexr

pip install pyexr

然后,它提出:

Collecting pyexr
  Using cached PyEXR-0.3.9-py2.py3-none-any.whl
Requirement already satisfied: future in /Users/li/opt/anaconda3/lib/python3.7/site-packages (from pyexr) (0.18.2)
Collecting OpenEXR
  Using cached OpenEXR-1.3.2.tar.gz (10 kB)
Requirement already satisfied: numpy in /Users/li/opt/anaconda3/lib/python3.7/site-packages (from pyexr) (1.19.2)
Building wheels for collected packages: OpenEXR
  Building wheel for OpenEXR (setup.py) ... error
  ERROR: Command errored out with exit status 1:
   command: /Users/li/opt/anaconda3/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/5_/r_bbpkqj2t126yjr97zgbvshnb19df/T/pip-install-c9hgqbad/openexr_2e771c75afb74b589da0413a0d9f26e0/setup.py'"'"'; __file__='"'"'/private/var/folders/5_/r_bbpkqj2t126yjr97zgbvshnb19df/T/pip-install-c9hgqbad/openexr_2e771c75afb74b589da0413a0d9f26e0/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d /private/var/folders/5_/r_bbpkqj2t126yjr97zgbvshnb19df/T/pip-wheel-ur0lkk8c
       cwd: /private/var/folders/5_/r_bbpkqj2t126yjr97zgbvshnb19df/T/pip-install-c9hgqbad/openexr_2e771c75afb74b589da0413a0d9f26e0/
  Complete output (15 lines):
  running bdist_wheel
  running build
  running build_py
  creating build
  creating build/lib.macosx-10.9-x86_64-3.7
  copying Imath.py -> build/lib.macosx-10.9-x86_64-3.7
  running build_ext
  building 'OpenEXR' extension
  creating build/temp.macosx-10.9-x86_64-3.7
  gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/Users/li/opt/anaconda3/include -arch x86_64 -I/Users/li/opt/anaconda3/include -arch x86_64 -I/usr/include/OpenEXR -I/usr/local/include/OpenEXR -I/opt/local/include/OpenEXR -I/Users/li/opt/anaconda3/include/python3.7m -c OpenEXR.cpp -o build/temp.macosx-10.9-x86_64-3.7/OpenEXR.o -g -DVERSION="1.3.2"
  OpenEXR.cpp:37:10: fatal error: 'ImfIO.h' file not found
  #include <ImfIO.h>
           ^~~~~~~~~
  1 error generated.
  error: command 'gcc' failed with exit status 1
  ----------------------------------------
  ERROR: Failed building wheel for OpenEXR
  Running setup.py clean for OpenEXR
Failed to build OpenEXR

1 个答案:

答案 0 :(得分:0)

解决方法:

brew install openexr
pip install git+https://github.com/jamesbowman/openexrpython.git
pip install pyexr
相关问题