This repository has been archived on 2026-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
icefall/docs/README.md
2023-01-06 17:00:27 +08:00

25 lines
389 B
Markdown

## Usage
```bash
cd /path/to/icefall/docs
pip install -r requirements.txt
make clean
make html
cd build/html
python3 -m http.server 8000
```
It prints:
```
Serving HTTP on 0.0.0.0 port 8000 (http://0.0.0.0:8000/) ...
```
Open your browser and go to <http://0.0.0.0:8000/> to view the generated
documentation.
Done!
**Hint**: You can change the port number when starting the server.