commit 8442408f91c608a50c8ebfd9bf1eed11589c6775
parent 5959ec4b5c25879af265cb4e0ce251bd6c69b457
Author: Martin Schanzenbach <schanzen@gnunet.org>
Date: Wed, 23 Oct 2024 09:25:36 +0200
update installation instruction
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/README b/README
@@ -14,7 +14,7 @@ sudo python3 setup.py install
# Local installation through virtualenv
python3 -m venv .venv
source .venv/bin/activate
-python3 setup.py install
+pip install .
```
## How to install (Developer)
@@ -26,7 +26,7 @@ you make a change.
# installation through virtualenv
python3 -m venv .venv
source .venv/bin/activate
-python3 setup.py develop
+pip install -e .
```
## How to use