10 lines
209 B
Bash
Executable File
10 lines
209 B
Bash
Executable File
#!/bin/bash
|
|
python -m venv venv
|
|
source venv/bin/activate
|
|
pip install patchelf
|
|
pip install maturin
|
|
pip install sphinx
|
|
maturin develop
|
|
sphinx-build -M html docs html
|
|
python -m http.server --directory html/html/
|