# OlivOS **Repository Path**: qq492607291/OlivOS ## Basic Information - **Project Name**: OlivOS - **Description**: No description available - **Primary Language**: Python - **License**: AGPL-3.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-02-09 - **Last Updated**: 2024-06-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README
## 兼容 [](https://github.com/botuniverse/onebot) [](https://github.com/botuniverse/onebot) [](https://chrononeko.github.io/QQNTRedProtocol/) [](https://im.qq.com/index/) [](https://github.com/NapNeko/NapCatQQ) [](https://github.com/Mrs4s/go-cqhttp) [](https://github.com/onebot-walle/walle-q) [](https://weixin.qq.com/) [](https://github.com/JustUndertaker/ComWeChatBotClient) [](https://bot.q.qq.com/wiki/) [](https://bot.q.qq.com/wiki/) [](https://open.dingtalk.com/) [](https://discord.com/) [](http://www.bilibili.com/) [](https://telegram.org/) [](https://www.kookapp.cn/) [](https://open.miyoushe.com/) [](https://dodo.link/) [](https://fanbook.mobi/) [](https://hack.chat/) [](https://advancedcombattracker.com/download.php) > *排名不分先后* ## 概述 **OlivOS 青果核心交互栈**,一个将各类涉及异步文本流交互的场景(即时通讯、直播弹幕、网络聊天室、静态命令行应用程序)转换到统一框架,基于统一流量管理、负载均衡、业务处理机制进行服务,以期在这些交互逻辑与功能需求类似的场景获得**更加灵活的部署方式**、**更加有效的开发模式**以及**更加合理的资源调度**。 ## 方针 技术路线上,基于Python、采用模块化框架、进程分离、消息队列通信、前后端分离、响应式布局、渐进式渲染的基本思路,实现一个高并发性、高可靠性、高适应性的整体方案。 ## 欢迎点击Star,这对我们将带来很大的支持! [](https://star-history.com/#OlivOS-Team/OlivOS&Date) ## 开始使用 ### 发布版本 #### Windows 我们推荐`Windows`用户直接使用经过二进制编译的发布版本,你可以在这里获取最新版本:[releases](https://github.com/OlivOS-Team/OlivOS/releases) ### 源码版本 请确保你已经安装了Python3以及git,当前我们主要使用`3.7.5`以及`3.11.0`两个版本的Python。 + 首先,克隆本项目的源码 ```bash git clone https://github.com/OlivOS-Team/OlivOS cd OlivOS ``` + 安装依赖环境 ```bash pip install -r requirements310_pure.txt ``` 对于`3.7.5`版本的Python,有单独提供的依赖描述文件 ```bash pip install -r requirements_pure.txt ``` + 启动环境 ``` python main.py ``` ### Pypi版本 OlivOS的核心组件部分已经被充分集成,并作为Pypi库进行了发布,你同样也可以使用`pip`来获取这个版本并将OlivOS作为库加以使用。 要获取最新版本的OlivOS库,你需要 ```bash pip install olivos ``` 以下是一个简单的OlivOS启动示例代码 ```python import OlivOS if __name__ == '__main__': OlivOSTarget = OlivOS.bootAPI.Entity() OlivOSTarget.start() ``` ## 插件 请参考插件默认模板[OlivOSPluginTemplate](https://github.com/OlivOS-Team/OlivOSPluginTemplate)和[官方文档](https://doc.olivos.wiki)进行插件开发。 ## 许可证 Copyright (C) 2019-2021 lunzhiPenxil and OlivOS Team and contributors. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see