Fernando Tarin Morales commited on
Commit
5e5296a
1 Parent(s): f3d9390

Added quotes to the pip install -e command to fix an incompatibility with shells that do glob expansion like zsh (#632)

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -87,7 +87,7 @@ git clone https://github.com/OpenAccess-AI-Collective/axolotl
87
  cd axolotl
88
 
89
  pip3 install packaging
90
- pip3 install -e .[flash-attn,deepspeed]
91
  pip3 install -U git+https://github.com/huggingface/peft.git
92
 
93
  # finetune lora
@@ -122,7 +122,7 @@ accelerate launch -m axolotl.cli.inference examples/openllama-3b/lora.yml \
122
  3. Install axolotl along with python dependencies
123
  ```bash
124
  pip3 install packaging
125
- pip3 install -e .[flash-attn,deepspeed]
126
  ```
127
 
128
  - LambdaLabs
@@ -158,7 +158,7 @@ accelerate launch -m axolotl.cli.inference examples/openllama-3b/lora.yml \
158
  cd axolotl
159
 
160
  pip3 install packaging
161
- pip3 install -e .[flash-attn,deepspeed]
162
  pip3 install protobuf==3.20.3
163
  pip3 install -U --ignore-installed requests Pillow psutil scipy
164
  ```
 
87
  cd axolotl
88
 
89
  pip3 install packaging
90
+ pip3 install -e '.[flash-attn,deepspeed]'
91
  pip3 install -U git+https://github.com/huggingface/peft.git
92
 
93
  # finetune lora
 
122
  3. Install axolotl along with python dependencies
123
  ```bash
124
  pip3 install packaging
125
+ pip3 install -e '.[flash-attn,deepspeed]'
126
  ```
127
 
128
  - LambdaLabs
 
158
  cd axolotl
159
 
160
  pip3 install packaging
161
+ pip3 install -e '.[flash-attn,deepspeed]'
162
  pip3 install protobuf==3.20.3
163
  pip3 install -U --ignore-installed requests Pillow psutil scipy
164
  ```