Skip to content

Commit

Permalink
fix typo in quick start (databricks#2)
Browse files Browse the repository at this point in the history
Change

```Bash
pip install -e requirements.txt
```

to

```Bash
pip install -r requirements.txt
```
  • Loading branch information
asnelling committed Mar 27, 2024
1 parent 5d4bb8f commit 8ddfd58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ We recommend having at least 320GB of memory to run the model.
Then, run:

```
pip install -e requirements.txt # Or requirements-gpu.txt to use flash attention on GPU(s)
pip install -r requirements.txt # Or requirements-gpu.txt to use flash attention on GPU(s)
huggingface-cli login # Add your Hugging Face token in order to access the model
python generate.py # See generate.py to change the prompt and other settings
```
Expand Down

0 comments on commit 8ddfd58

Please sign in to comment.