我注意到一些较新的TensorFlow版本与较旧的CUDA和cuDNN版本不兼容.是否存在兼容版本的概述,甚至是官方测试组合的列表?我在TensorFlow文档中找不到它.
我正在尝试编写一个在Mac OS 10.11.16上使用MoviePy将Python文件转换为GIF的Python程序.我用:
import moviepy.editor as mp
Run Code Online (Sandbox Code Playgroud)
我得到一个错误,说我需要打电话,imageio.plugins.ffmpeg.download()所以我可以下载ffmpeg.我用:
import imageio
imageio.plugins.ffmpeg.download()
Run Code Online (Sandbox Code Playgroud)
这给了我以下错误:
Imageio: 'ffmpeg.osx' was not found on your computer; downloading it now.
Error while fetching file: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:749)>.
Error while fetching file: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:749)>.
Error while fetching file: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:749)>.
Error while fetching file: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:749)>.
Traceback (most recent call last):
File "<pyshell#2>", …Run Code Online (Sandbox Code Playgroud) 我需要查看旧 TF 版本 (0.12.1) 的 TensorFlow API 文档。该网站将我指向 GitHub 分支。通过检查相应分支的子包中的代码,我能够找到我的信息。但是,我正在寻找一种有效搜索旧 api 信息的方法,即使用网站上提供的搜索栏和分层树搜索(网站左侧)等。
有没有更快的方法,如果有,除了在这种情况下搜索 .md 和代码文件之外,最好的方法是什么?