Skip to content

Commit

Permalink
Added quotes to the pip install -e command to fix an incompatibility …
Browse files Browse the repository at this point in the history
…with shells that do glob expansion like zsh (axolotl-ai-cloud#632)
  • Loading branch information
Nan-Do committed Sep 25, 2023
1 parent 72997f3 commit 09911cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ git clone https://github.com/OpenAccess-AI-Collective/axolotl
cd axolotl

pip3 install packaging
pip3 install -e .[flash-attn,deepspeed]
pip3 install -e '.[flash-attn,deepspeed]'
pip3 install -U git+https://github.com/huggingface/peft.git

# finetune lora
Expand Down Expand Up @@ -122,7 +122,7 @@ accelerate launch -m axolotl.cli.inference examples/openllama-3b/lora.yml \
3. Install axolotl along with python dependencies
```bash
pip3 install packaging
pip3 install -e .[flash-attn,deepspeed]
pip3 install -e '.[flash-attn,deepspeed]'
```

- LambdaLabs
Expand Down Expand Up @@ -158,7 +158,7 @@ accelerate launch -m axolotl.cli.inference examples/openllama-3b/lora.yml \
cd axolotl

pip3 install packaging
pip3 install -e .[flash-attn,deepspeed]
pip3 install -e '.[flash-attn,deepspeed]'
pip3 install protobuf==3.20.3
pip3 install -U --ignore-installed requests Pillow psutil scipy
```
Expand Down

0 comments on commit 09911cb

Please sign in to comment.