"pcdet/models/vscode:/vscode.git/clone" did not exist on "3fa8b5121dba863b101e84f9b58aa7ddb17c7d2b"
Unverified Commit 412ec843 authored by 祝健聪's avatar 祝健聪 Committed by GitHub
Browse files

docs: add fix for Zsh globbing error with `pip install .[all]` (#945)


Signed-off-by: default avatarChasing1020 <chasing1020@gmail.com>
parent 3c3cec97
......@@ -44,7 +44,7 @@ DEBIAN_FRONTEND=noninteractive apt-get install -yq python3-dev python3-pip pytho
python3 -m venv venv
source venv/bin/activate
pip install ai-dynamo[all]
pip install "ai-dynamo[all]"
```
> [!NOTE]
> To ensure compatibility, please refer to the examples in the release branch or tag that matches the version you installed.
......@@ -177,7 +177,7 @@ cd lib/bindings/python
pip install .
cd ../../../
pip install .[all]
pip install ".[all]"
# To test
docker compose -f deploy/metrics/docker-compose.yml up -d
......
......@@ -24,7 +24,7 @@ DEBIAN_FRONTEND=noninteractive apt-get install -yq python3-dev python3-pip pytho
python3 -m venv venv
source venv/bin/activate
pip install ai-dynamo[all]
pip install "ai-dynamo[all]"
```
## Dynamo workflow
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment