已解决AttributeError: module ‘gradio‘ has no attribute ‘outputs‘

问题描述

Traceback (most recent call last):
  File "/media/visionx/monica/project/ResShift/app.py", line 118, in
    gr.outputs.File(label="Download the output")
AttributeError: module 'gradio' has no attribute 'outputs'

解决办法

        一般来说这种情况就是因为后面库包的版本不再支持有些方法或属性,需要使用较老的库包,所以需要先卸载已有的

pip uninstall gradio

        卸载完成之后再重新安装合适的版本 已解决AttributeError: module ‘gradio‘ has no attribute ‘outputs‘_第1张图片

pip install gradio==2.9.4

 已解决AttributeError: module ‘gradio‘ has no attribute ‘outputs‘_第2张图片

        如果这完成了,那就不用往下面看了,不过一般会出现新的问题

 Traceback (most recent call last):
  File "/media/visionx/monica/project/ResShift/app.py", line 108, in
    gr.Image(type="filepath", label="Input: Low Quality Image"),
AttributeError: module 'gradio' has no attribute 'Image'

         还是因为版本:

pip install gradio==3.4

完结撒花

你可能感兴趣的:(Bugs(程序报错),java,前端,javascript,人工智能,深度学习,pytorch,机器学习)