v3.2.4.exe was not found on your computer; downloading it no

时间:2021-12-22 01:56:38

在使用pip下载了Imageio之后,需要下载ffmpeag-win-32-v3.2.4.exe文件,一种是在代码的

开头部分加入:

imageio.plugins.ffmpeg.download()

这样在代码运行时就会下载此文件,但是由于网络等原因,迟迟下载不下来,最终会显示响应超时。

就会提示:

Unable to download  ‘fwmpeag-win32-v3.2.4.exe‘.Perhaps there is a inernet connection?

v3.2.4.exe was not found on your computer; downloading it no

v3.2.4.exe was not found on your computer; downloading it no

因为上面加入代码后,会检测在C:\Users\Administrator\AppData\Local\imageio\ffmpeg

目录下有没有‘fwmpeag-win32-v3.2.4.exe文件,不存在的话就会联网下载到该目录下。

实现

去到其Github上将缺失的对应的exe文件手动下载并放到对应目录下。

GitHub地址:

https://github.com/imageio/imageio-binaries/tree/master/ffmpeg

v3.2.4.exe was not found on your computer; downloading it no

下载之后将其放在对应目录下

v3.2.4.exe was not found on your computer; downloading it no

v3.2.4.exe was not found on your computer; downloading it no

如果通过Github没法下载,可以在这里进行下载。

https://download.csdn.net/download/badao_liumang_qizhi/11747539

标签:

原文地址:https://www.cnblogs.com/badaoliumangqizhi/p/11523326.html