You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: index.md
+20-7Lines changed: 20 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,28 +27,41 @@ To create your first PDF, simply install the `rst2pdf` tool, write some text, an
27
27
28
28
### Install rst2pdf
29
29
30
-
`rst2pdf` requires Python 3.6 or greater.
30
+
`rst2pdf` requires Python 3.8 or greater.
31
31
32
-
**Option 1: install with pip**
32
+
**Option 1: install with pipx**
33
33
34
34
This is the easiest option and will give the most recent stable release.
35
35
36
36
```
37
-
sudo pip install rst2pdf
37
+
pipx install rst2pdf
38
38
```
39
39
40
-
**Option 2: install from source**
40
+
rst2pdf also has support for a number of features that require additional dependencies. Installation of all the required dependencies using pipx may be installed using:
Note that you may need to use `sudo python3 setup.py install` depending on your configuration.
51
-
52
65
### Start using rst2pdf
53
66
54
67
Start with a text file. `rst2pdf` uses [ReStructured Text](http://docutils.sourceforge.net/rst.html) which is a markup format similar to (but a bit more detailed than) markdown. Here's an example file to get you started:
0 commit comments