From 5e5296a77cf185418d9d8f8f4e4b01fdf394d0ce Mon Sep 17 00:00:00 2001 From: Fernando Tarin Morales Date: Tue, 26 Sep 2023 00:50:14 +0900 Subject: [PATCH] Added quotes to the pip install -e command to fix an incompatibility with shells that do glob expansion like zsh (#632) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6ec81eed3c..25044a2361 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 @@ -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 ```