hugohe3--ppt-master
166 行
5.7 KiB
Markdown
166 行
5.7 KiB
Markdown
# Windows 安装指南
|
||
|
||
本指南将手把手教你在 Windows 上安装 PPT Master。按顺序操作,10 分钟内即可跑通第一份 PPT。
|
||
|
||
---
|
||
|
||
## Step 1 — 安装 Python(必须)
|
||
|
||
Python 是唯一的硬性要求。
|
||
|
||
1. 前往 **[python.org/downloads](https://www.python.org/downloads/)**,下载最新的 **Python 3.10+** 安装包。
|
||
|
||
2. **⚠️ 关键步骤:安装时务必勾选 "Add python.exe to PATH"** — 这是 Windows 上最常见的安装失误,不勾的话后面每一步都会出问题。
|
||
|
||

|
||
|
||
3. 安装完成后,打开 **PowerShell**(在开始菜单搜索「PowerShell」)并验证:
|
||
|
||
```powershell
|
||
python --version
|
||
```
|
||
|
||
应该看到 `Python 3.12.x` 之类的输出。如果提示「未找到」或弹出 Microsoft Store,见下方[常见问题](#python-未找到或弹出-microsoft-store)。
|
||
|
||
> **💡 提示**:Anaconda / Miniconda 安装的 Python 也可以用,只要 `python --version` 显示 3.10+ 即可。
|
||
|
||
---
|
||
|
||
## Step 2 — 下载项目
|
||
|
||
**方式 A — 下载 ZIP**(最简单):
|
||
|
||
1. 打开 [GitHub](https://github.com/hugohe3/ppt-master)(或 [AtomGit 镜像](https://atomgit.com/hugohe3/ppt-master),国内更快)
|
||
2. 点击绿色 **Code** 按钮 → **Download ZIP**
|
||
3. 解压到 `C:\Users\你的用户名\ppt-master`
|
||
|
||
**方式 B — Git Clone**(需要 [Git](https://git-scm.com/downloads)):
|
||
|
||
```powershell
|
||
# GitHub
|
||
git clone https://github.com/hugohe3/ppt-master.git
|
||
# AtomGit(国内更快)
|
||
git clone https://atomgit.com/hugohe3/ppt-master.git
|
||
cd ppt-master
|
||
```
|
||
|
||
---
|
||
|
||
## Step 3 — 安装依赖
|
||
|
||
```powershell
|
||
cd C:\Users\你的用户名\ppt-master # ← 替换为你的实际路径
|
||
pip install -r requirements.txt
|
||
```
|
||
|
||
> 如果 `pip` 无法识别,用 `python -m pip install -r requirements.txt`。
|
||
|
||
等待安装完成,最后看到 `Successfully installed ...` 就行。
|
||
|
||
---
|
||
|
||
## Step 4 — 验证安装
|
||
|
||
```powershell
|
||
python -c "import pptx; import fitz; print('All core dependencies OK')"
|
||
```
|
||
|
||
✅ 输出 `All core dependencies OK` → 核心环境没问题。
|
||
|
||
❌ 报错 → 见下方[常见问题](#常见问题)。
|
||
|
||
---
|
||
|
||
## Step 5 — 跑一个最小示例
|
||
|
||
打开你的 AI 编辑器(Cursor、VS Code + Copilot 等),打开 `ppt-master` 目录,在聊天面板输入:
|
||
|
||
```
|
||
请创建一个 3 页测试 PPT,封面 + 内容页 + 封底,主题"Hello World"
|
||
```
|
||
|
||
标准流程完成后应同时看到:
|
||
|
||
- `exports/` 下出现由项目转换器从 `svg_output/` 生成的原生 DrawingML `.pptx`,并能在 PowerPoint 中打开、逐元素编辑。
|
||
- 项目下生成 `svg_final/`,其中是可直接打开的自包含视觉预览 SVG;这些文件也可作为 SVG 图片手动插入 PowerPoint,但手工“转换为形状”不在支持范围。
|
||
|
||
两项都满足 → **搞定了。**
|
||
|
||
---
|
||
|
||
## Step 6 — 可选增强(大多数用户可以跳过)
|
||
|
||
装好 Python 和 `requirements.txt` 后,生成 PPT 的全部功能已经就绪。PPTX 导出直接写入原生 DrawingML 形状,不需要 CairoSVG、GTK 或另一套 SVG 栅格化环境。下面只保留一种**边缘场景的备用工具**——遇到对应需求时再装。
|
||
|
||
| 增强项 | 只在以下情况才装 | 安装方式 | 验证 |
|
||
|--------|-----------------|---------|------|
|
||
| **Pandoc** — 旧格式文档 | 你需要转 `.doc`、`.odt`、`.rtf`、`.tex`、`.rst`、`.org`、`.typ`。`.docx`/`.html`/`.epub`/`.ipynb` 已由 Python 原生处理。 | [pandoc.org](https://pandoc.org/installing.html) 下载 `.msi` 安装 | `pandoc --version` |
|
||
|
||
---
|
||
|
||
## 常见问题
|
||
|
||
### `python` 未找到或弹出 Microsoft Store
|
||
|
||
**原因:** Python 没有加入系统 PATH。
|
||
|
||
**方法 1** — 重新运行 Python 安装程序,选择 **Modify**,确保勾选 **"Add Python to environment variables"**。
|
||
|
||
**方法 2** — 手动添加 PATH:
|
||
1. 先在 PowerShell 中运行 `where python`,记下输出的路径(如 `C:\Users\你的用户名\AppData\Local\Programs\Python\Python312\python.exe`)
|
||
2. 开始菜单搜索「环境变量」
|
||
3. 找到 `Path` → **编辑** → 新增上面路径的**目录部分**及其 `Scripts` 子目录:
|
||
```
|
||
C:\Users\你的用户名\AppData\Local\Programs\Python\Python312
|
||
C:\Users\你的用户名\AppData\Local\Programs\Python\Python312\Scripts
|
||
```
|
||
4. 确定,**重启 PowerShell**
|
||
|
||
**方法 3** — 试试 `python3` 或 `py` 命令。
|
||
|
||
### 命令里的 `python3` 报错(exit 49 / 弹 Microsoft Store)
|
||
|
||
python.org 安装包只装了 `python.exe`,没有 `python3.exe`。**把命令里的 `python3` 换成 `python` 即可**(AI 通常也会自动改用 `python` 继续)。
|
||
|
||
### `pip install` 报权限错误
|
||
|
||
```powershell
|
||
pip install --user -r requirements.txt
|
||
```
|
||
|
||
或以管理员身份运行 PowerShell。
|
||
|
||
### `pip install` 网络问题
|
||
|
||
```powershell
|
||
# 清华镜像(国内推荐)
|
||
pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
|
||
|
||
# 代理
|
||
pip install -r requirements.txt --proxy http://your-proxy:port
|
||
```
|
||
|
||
### `ModuleNotFoundError`
|
||
|
||
`pip` 装到了另一个 Python 环境。用 `python -m pip install -r requirements.txt` 确保对应同一个。
|
||
|
||
### `import fitz` 失败
|
||
|
||
1. 升级 pip:`python -m pip install --upgrade pip`
|
||
2. 预编译包:`pip install PyMuPDF --only-binary :all:`
|
||
3. 仍失败 → 安装 [Visual C++ Build Tools](https://visualstudio.microsoft.com/visual-cpp-build-tools/)
|
||
|
||
### PowerShell「脚本运行被禁用」
|
||
|
||
```powershell
|
||
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
|
||
```
|
||
|
||
---
|
||
|
||
## 还是搞不定?
|
||
|
||
- 📖 [常见问题 (FAQ)](./faq.md)
|
||
- 🐛 [GitHub Issues](https://github.com/hugohe3/ppt-master/issues) — 附上 Python 版本、Windows 版本和完整报错
|
||
- 💬 [GitHub Discussions](https://github.com/hugohe3/ppt-master/discussions)
|