Skip to content

完整安装指南

系统要求

组件最低要求推荐配置
CPU4 核8 核+
内存8 GB16 GB+
显卡集成NVIDIA 4GB+(加速 AI 推理)
磁盘5 GB10 GB+

Windows

方式一:安装包(推荐)

  1. GitHub Releases 下载 .exe 安装包
  2. 运行安装程序,启动 SceneFab

方式二:pip

powershell
python --version   # 需 Python 3.10+
pip install scenefab
scenefab

方式三:WSL + 源码

bash
# WSL2 Ubuntu
sudo apt update && sudo apt upgrade -y
sudo apt install python3.10-venv ffmpeg libsm6 libxext6 libgl1
git clone https://github.com/Agions/scene-fab.git
cd scene-fab
python3 -m venv venv
source venv/bin/activate
pip install -e .
scenefab

macOS

方式一:Homebrew(推荐)

bash
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install scenefab
scenefab

方式二:pip

bash
brew install python@3.11 ffmpeg
pip3 install scenefab
scenefab

Linux (Ubuntu/Debian)

bash
sudo apt update
sudo apt install -y python3.10 python3-pip python3.10-venv ffmpeg libsm6 libxext6 libgl1

git clone https://github.com/Agions/scene-fab.git
cd scene-fab
python3 -m venv venv
source venv/bin/activate
pip install -e .
scenefab

依赖说明

依赖版本用途安装方式
Python3.10+运行语言系统
FFmpeglatest音视频处理系统包
PySide66.5+Qt 桌面 UIpip
DeepSeek SDKAPI 调用pip

验证安装

bash
scenefab --version
# 输出: scenefab 3.0.0

卸载

bash
pip uninstall scenefab
# 或 Homebrew:
brew uninstall scenefab

⚠️ 注意

卸载前请确保已导出所有项目文件!

基于 MIT License 开源 · Copyright © 2025-2026 Agions