环境要求
- 操作系统:Ubuntu ≥ 22.04
- Python版本:≥ 3.11.10「推荐使用conda」
# 1. 创建并激活conda环境
conda create -n sage python=3.11.10
conda activate sage
# 2. 安装SAGE
pip install isage
# 3. 克隆SAGE仓库
git clone git@github.com:intellistream/SAGE.git
cd SAGE
# 4. 运行Hello World示例
python examples/tutorials/hello_world.py
# 1. 克隆仓库 「请提前确保装有conda」
git clone https://github.com/intellistream/SAGE.git
cd SAGE
# 2. 采用安装脚本快速安装
./quickstart.sh
# 3. 运行Hello World示例
python examples/tutorials/hello_world.py