aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 7 insertions, 3 deletions
diff --git a/README.md b/README.md
index 3a2ac32..e9233cc 100644
--- a/README.md
+++ b/README.md
@@ -3,11 +3,15 @@
## Install
```bash
-pip3 install -r requirements.txt
+git submodule update --init
+
+pip install -e . # With editable mode
+# Or
+pip install . # Without editable mode
```
-## Build grpc interfaces
+## Rebuild gRPC interfaces
```bash
-./setup.py build_grpc
+./_build/grpc.py
```