xszyou / Fay

Fay is an open-source digital human framework integrating language models and digital characters. It offers retail, assistant, and agent versions for diverse applications like virtual shopping guides, broadcasters, assistants, waiters, teachers, and voice or text-based mobile assistants.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

运行后界面是空白的

zhaiyuanGC opened this issue · comments

我在windows用conda和Python3.10运行main.py后为什么是空白的,什么都没有,只有libpng warning: iCCP: cHRM chunk does not match sRGB

空白通常是因为qt5库出错,或者用户权限不够创建初始文件导致的。你可以更换成超给管理员启动试试,若不行可以使用无qt方式启动:http://yafrm.com/forum.php?mod=viewthread&tid=319&extra=page%3D1

ubuntu系统,运行空白
解决方案:
main.py文件
import os
os.environ['QTWEBENGINE_CHROMIUM_FLAGS'] = '--no-sandbox' 要加这个参数,才能显示界面
感谢白大佬,跟大家分享!