问题描述
Traceback (most recent call last):
File "/media/visionx/monica/project/ResShift/app.py", line 118, in <module>
gr.outputs.File(label="Download the output")
AttributeError: module 'gradio' has no attribute 'outputs'
解决办法
一般来说这种情况就是因为后面库包的版本不再支持有些方法或属性,需要使用较老的库包,所以需要先卸载已有的
pip uninstall gradio
卸载完成之后再重新安装合适的版本
pip install gradio==2.9.4
如果这完成了,那就不用往下面看了,不过一般会出现新的问题
Traceback (most recent call last):
File "/media/visionx/monica/project/ResShift/app.py", line 108, in <module>
gr.Image(type="filepath", label="Input: Low Quality Image"),
AttributeError: module 'gradio' has no attribute 'Image'
还是因为版本:
pip install gradio==3.4