diff options
author | Wouter Overmeire <lodagro@gmail.com> | 2025-04-28 13:38:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-28 13:38:17 +0200 |
commit | 2c899704c31a8d0c12fe86121854373f5509ed0b (patch) | |
tree | f199c0a70a585466b2722d17140a7b7233921804 | |
parent | 9a6d0b3629d37c9ddbc573072b0921aed8c27fa2 (diff) |
Fix python dev requirements installation command (#2800)
-rw-r--r-- | python/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/README.md b/python/README.md index f0dc8d021..259a04447 100644 --- a/python/README.md +++ b/python/README.md @@ -24,7 +24,7 @@ sudo make install cd python # IMPORTANT: nDPI Bindings requires Python version >= 3.7 python3 -m pip install --upgrade pip -python3 -m install -r dev_requirements.txt +python3 -m pip install -r dev_requirements.txt python3 -m pip install . ``` |