使用imageio报错‘libfreeimage-3.16.0-linux64.so‘ was not found on your computer的解决方法

源头

在跑blenderproc的demo的时候,自动进行安装blender还有一些关联的库,其中包括imageio,然后在使用imageio.plugins.freeimage.download()的时候出现报错。

解决方法

  1. 先去github上把文件下到本地
    文件下载地址:https://github.com/imageio/imageio-binaries/tree/master/freeimage
  2. 找到freeimage文件夹所在位置
    打开一个终端,先输入python,进入python命令行模式,然后依次输入并执行如下两行代码:输入以下指令:
import imageio

imageio.core.util.appdata_dir("imageio")

可以获得路径:

使用imageio报错‘libfreeimage-3.16.0-linux64.so‘ was not found on your computer的解决方法_第1张图片

这里的.imageio路径是一个隐藏的文件夹,需要将“显示隐藏文件”给勾上才能看到,如下图所示:
使用imageio报错‘libfreeimage-3.16.0-linux64.so‘ was not found on your computer的解决方法_第2张图片

在.imageio文件夹下,可以看到只有一个名为freeimage的文件夹,然后该文件夹里面是空的。

  1. 把刚刚下载的文件移过去
    把下载的文件给复制一份到本地的.imageio路径下的freeimage文件夹里即可。这里我把所有文件都拷贝过来了,如下图所示:
    使用imageio报错‘libfreeimage-3.16.0-linux64.so‘ was not found on your computer的解决方法_第3张图片

参考链接:

https://blog.csdn.net/qq_42050720/article/details/117421739
https://blog.csdn.net/weixin_44120025/article/details/120859468

你可能感兴趣的:(环境搭建,python)