File tree Expand file tree Collapse file tree 2 files changed +38
-1
lines changed Expand file tree Collapse file tree 2 files changed +38
-1
lines changed Original file line number Diff line number Diff line change @@ -54,12 +54,18 @@ Clone git repository and change dir.
5454## 3.1. Build As Non-Root-User
5555
5656Build python-package with setup-tools (as non root user). This will generate the installabe tarball
57- into ` ./dist/xmlmicroparser-0.54b0 .tar.gz ` .
57+ into ` ./dist/xmlmicroparser-0.55b0 .tar.gz ` .
5858
5959``` bash
6060# python3 setup.py sdist
6161```
6262
63+ ## 3.2. Install As Root-User
64+
65+ ``` bash
66+ # sudo pip3 install ./dist/xmlmicroparser-0.55b0.tar.gz --break-system-packages
67+ ```
68+
6369## 4. Run Tests / Pytest
6470
6571``` bash
Original file line number Diff line number Diff line change 1+ # Documentation (Sphinx)
2+
3+ # 1. Dependencies
4+
5+ # 1.1. Sphinx Basic HTML / RTD Theme
6+
7+ ``` bash
8+ # apt-get install python3-sphinx python3-sphinx-rtd-theme
9+ ```
10+
11+ # 1.2. PDF / Latex
12+
13+ ``` bash
14+ # apt-get install texlive-full
15+ ```
16+
17+ # 2. Build
18+
19+ # 2.1. HTML Documentation
20+
21+ ``` bash
22+ # make html
23+ # cd ./build/html/
24+ ```
25+
26+ # 2.2. PDF / Latex
27+
28+ ``` bash
29+ # make latexpdf
30+ # cd ./build/latex/
31+ ```
You can’t perform that action at this time.
0 commit comments