QChatGPT/main.py

40 lines
944 B
Python
Raw Normal View History

2024-02-29 19:10:30 +08:00
# QChatGPT 终端启动入口
# 在此层级解决依赖项检查。
2024-01-27 00:05:55 +08:00
asciiart = r"""
___ ___ _ _ ___ ___ _____
/ _ \ / __| |_ __ _| |_ / __| _ \_ _|
| (_) | (__| ' \/ _` | _| (_ | _/ | |
\__\_\\___|_||_\__,_|\__|\___|_| |_|
2024-02-08 13:37:27 +08:00
开源地址: https://github.com/RockChinQ/QChatGPT
📖文档地址: https://q.rkcn.top
2024-01-27 00:05:55 +08:00
"""
2024-02-29 19:10:30 +08:00
async def main_entry():
2024-01-27 00:05:55 +08:00
print(asciiart)
2024-02-29 19:10:30 +08:00
import sys
from pkg.core.bootutils import deps
missing_deps = await deps.check_deps()
if missing_deps:
print("以下依赖包未安装,将自动安装,请完成后重启程序:")
for dep in missing_deps:
print("-", dep)
await deps.install_deps(missing_deps)
print("已自动安装缺失的依赖包,请重启程序。")
sys.exit(0)
2024-01-27 00:05:55 +08:00
from pkg.core import boot
2024-02-29 19:10:30 +08:00
await boot.main()
if __name__ == '__main__':
import asyncio
asyncio.run(main_entry())