Skip to content

Latest commit

 

History

History
89 lines (63 loc) · 1.97 KB

README.md

File metadata and controls

89 lines (63 loc) · 1.97 KB

Pulsar2 User Manual

Web 预览

1. 项目背景

新一代 AI 工具链 Pulsar2 使用手册公共维护项目

  • 提供统一的 AI 工具链文档内部展示地址
  • 降低 AI 工具链 Developer 维护成本
  • 降低 AI 工具链 User 学习成本

2. 本地运行指南

2.1 git clone

git clone https://github.com/AXERA-TECH/pulsar2-docs.git

目录树如下:

.
├── LICENSE
├── Makefile
├── README.md
├── build
│   ├── doctrees
│   └── html
├── requirements.txt
└── source                      # 文档主体
    ├── appendix
    ├── conf.py
    ├── doc_update_info
    ├── examples                # 以 .zip 格式保存了一些例子, 由于git pages的限制, 在线文档不支持点击下载操作
    ├── faq
    ├── index.rst
    ├── media
    ├── pulsar2
    ├── user_guides_advanced
    ├── user_guides_config
    ├── user_guides_quick
    └── user_guides_runtime

2.2 编译

安装依赖

pip install -r requirements.txt

在项目根目录下执行以下命令

$ make clean
$ make html

2.3 预览

完成编译后,使用浏览器查看 build/html/index.html . 如果在服务器上开发, 可以通过 ssh 端口转发的方式访问编译后的文档, 方法如下:

首先可以利用 python 在编译后的 build/html/ 文件夹下启动一个 http 服务,

$ cd build/html/
$ python -m SimpleHTTPServer 8005  # For python2, 端口可以自定义
# or
$ python3 -m http.server 8005      # For python3, 端口可以自定义

然后通过 ssh 链接服务器,

ssh -L 8005:localhost:8005 username@server

然后本地浏览器访问: localhost:8005/index.html

3. 参考

4. 发版