Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
xu-song
/
kplug
like
2
Runtime error
App
Files
Files
Community
01920f9
kplug
/
gradio_patch.py
xusong28
upgrade gradio to 3.12.0
5b47e63
almost 2 years ago
raw
Copy download link
history
blame
Safe
241 Bytes
# coding=utf-8
"""
huggingface默认gradio版本是3.1.7。在多tab下的chatbot报错。因此需要更新到3.12.0
https://www.kingname.info/2019/10/29/pip-in-code/
"""
from
pip._internal
import
main
main([
'install'
,
'gradio==3.12.0'
])