编程语言
首页 > 编程语言> > 在python中安装openexr不起作用

在python中安装openexr不起作用

作者:互联网

我已经在我的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中导入OpenEXR时,它不起作用.

有谁知道为什么?

解决方法:

你需要安装apt软件包“libopenexr-dev”,这将解决pip问题.

我在Mac上没有这个问题,“brew install openexr”也必须安装标题.

标签:python,ubuntu,python-import,apt-get,openexr
来源: https://codeday.me/bug/20191006/1862780.html