From 8ddfd58efa28d80a7d3709b6ea77903eb73acd9c Mon Sep 17 00:00:00 2001 From: Addison Snelling Date: Wed, 27 Mar 2024 15:49:10 -0500 Subject: [PATCH] fix typo in quick start (#2) Change ```Bash pip install -e requirements.txt ``` to ```Bash pip install -r requirements.txt ``` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 37a70c1..9457655 100644 --- a/README.md +++ b/README.md @@ -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 ```