mirror of https://github.com/Nonannet/pyladoc.git
readme updated
This commit is contained in:
parent
727ab55b3d
commit
a413d771b3
12
README.md
12
README.md
|
@ -60,13 +60,15 @@ Pyladoc depends on the markdown package.
|
||||||
Optional dependencies are:
|
Optional dependencies are:
|
||||||
- Matplotlib python package for rendering LaTeX equations for HTML output
|
- Matplotlib python package for rendering LaTeX equations for HTML output
|
||||||
- LaTeX for exporting to PDF or exporting Matplotlib figures to LaTeX (PGF/TikZ rendering)
|
- LaTeX for exporting to PDF or exporting Matplotlib figures to LaTeX (PGF/TikZ rendering)
|
||||||
- Pandas and Matplotlib for including Pandas Tables and Matplotlib figures (obviously)
|
- Pandas and Jinja2 for rendering pandas tables
|
||||||
|
- Matplotlib for rendering matplotlib figures (obviously)
|
||||||
|
|
||||||
For the included template the following LaTeX setup works on Ubuntu:
|
For the included template the `miktex`-LaTeX distribution works on Windows
|
||||||
|
and the following LaTeX setup works on Ubuntu (both tested in CI):
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y texlive-latex-extra texlive-fonts-extra lmodern texlive-xetex texlive-science
|
sudo apt-get install -y texlive-latex-extra texlive-fonts-recommended lmodern texlive-xetex texlive-science
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
@ -121,8 +123,8 @@ cd pyladoc
|
||||||
It's recommended to setup an venv:
|
It's recommended to setup an venv:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
python -m venv venv
|
python -m venv .venv
|
||||||
source venv/bin/activate # On Windows use `venv\Scripts\activate`
|
source .venv/bin/activate # On Windows use `.venv\Scripts\activate`
|
||||||
```
|
```
|
||||||
|
|
||||||
Install the package and dev-dependencies while keeping files in the
|
Install the package and dev-dependencies while keeping files in the
|
||||||
|
|
Loading…
Reference in New Issue