Scott

Results 4 comments of Scott

The error is made by UnicodeDecodeError. In the file of markdown_to_json.py, line 137, return "\n".join(block.strings) change to: tmp = [] for n in block.strings: tmp.append(n.decode('utf8')) return "\n".join(tmp)

这个问题解决了吗 @hellobw2000

> > > 你手工对比下wps接受前后配置文件,也许是写在那了 > > > > > > 找到了,但是遇到新问题,使用非root用户运行貌似不行。 > > @tyjuncai 请问你是在哪里找到的? 配置文件位置 /root/.config/Kingsoft/Office.conf 添加下面的接受协议 ,亲测可以跳过,也可以把自己能用的替换掉Office.conf common\AcceptedEULA=true

最新版本的gradio 弃用了style, 修改为"user_input = gr.Textbox(show_label=False, placeholder="Input...", lines=10, container=False)"