summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorNora Widdecke <nora@sequoia-pgp.org>2021-02-19 18:39:25 +0100
committerNora Widdecke <nora@sequoia-pgp.org>2021-02-20 15:51:49 +0100
commitb4238fa14e38d8fe4afabdfd1a50bd2bcb94bcb5 (patch)
tree4c1d21146be07094daafcd85617e6f77e8abc516 /README.md
parent48bfaf48284a856976035cc392a28510c19feac0 (diff)
readme: List python dependency pip.
- setuptools 52.0.0, which is not in Debian bullseye, requires pip. Thus, transitively, we do to.
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 3bfaac9b..1cc1552d 100644
--- a/README.md
+++ b/README.md
@@ -279,30 +279,30 @@ The FFI crate contains Python bindings. To disable building, testing,
and installing the Python bindings, use `make PYTHON=disable`.
To build the Python bindings, you will need the Python headers,
-setuptools, cffi, and pytest for Python3.
+setuptools, pip, cffi, and pytest for Python3.
#### Debian
```shell
-$ sudo apt install python3-dev python3-setuptools python3-cffi python3-pytest
+$ sudo apt install python3-dev python3-setuptools python3-cffi python3-pytest python3-pip
```
#### Fedora
```shell
-$ sudo dnf install python3-devel python3-setuptools python3-cffi python3-pytest
+$ sudo dnf install python3-devel python3-setuptools python3-cffi python3-pytest python3-pip
```
#### macOS (Mojave), using MacPorts
```shell
-$ sudo port install py37-setuptools
+$ sudo port install py-setuptools py-cffi py-pytest py-pip
```
#### BSD
```shell
-# pkg install capnproto coreutils gmake lang/rust llvm nettle pkgconf py37-setuptools python3 sqlite
+# pkg install capnproto coreutils gmake lang/rust llvm nettle pkgconf py37-setuptools py37-pip python3 sqlite
```
Getting help