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 ...@@ -44,7 +44,7 @@ DEBIAN_FRONTEND=noninteractive apt-get install -yq python3-dev python3-pip pytho
python3 -m venv venv python3 -m venv venv
source venv/bin/activate source venv/bin/activate
pip install ai-dynamo[all] pip install "ai-dynamo[all]"
``` ```
> [!NOTE] > [!NOTE]
> To ensure compatibility, please refer to the examples in the release branch or tag that matches the version you installed. > 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 ...@@ -177,7 +177,7 @@ cd lib/bindings/python
pip install . pip install .
cd ../../../ cd ../../../
pip install .[all] pip install ".[all]"
# To test # To test
docker compose -f deploy/metrics/docker-compose.yml up -d 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 ...@@ -24,7 +24,7 @@ DEBIAN_FRONTEND=noninteractive apt-get install -yq python3-dev python3-pip pytho
python3 -m venv venv python3 -m venv venv
source venv/bin/activate source venv/bin/activate
pip install ai-dynamo[all] pip install "ai-dynamo[all]"
``` ```
## Dynamo workflow ## 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