我已经在我的 mac 上使用 pip install openexr
成功安装了 openexr,但相同的命令在 Ubuntu 上失败:
OpenEXR.cpp:9:22: fatal error: ImathBox.h: No such file or directory
compilation terminated.
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
----------------------------------------
Failed building wheel for openex
我尝试使用
apt-get install openexr
似乎安装没有错误,但是当我尝试在 python 中使用 import OpenEXR
时,它不起作用。有谁知道为什么?
最佳答案
您需要安装 apt 包“libopenexr-dev”,这将解决 pip 问题。
我在 mac 上没有这个问题,“brew install openexr”也必须安装头文件。
关于python - 在python中安装openexr不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45601949/