From 67e61a2b07bc568f18b0de1be1521f9dd2cfb91d Mon Sep 17 00:00:00 2001 From: Daniel King <43149077+dakinggg@users.noreply.github.com> Date: Mon, 8 May 2023 11:46:21 -0700 Subject: [PATCH] Add venv instructions to readme (#69) * Add venv instructions to readme --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 40ed033d7f..7f24ed9f75 100644 --- a/README.md +++ b/README.md @@ -58,9 +58,15 @@ Here's what you need to get started with our LLM stack: To get started, clone this repo and install the requirements: + ```bash git clone https://github.com/mosaicml/llm-foundry.git cd llm-foundry + +# Optional: we highly recommend creating and using a virtual environment +python -m venv llmfoundry-venv +source llmfoundry-venv/bin/activate + pip install -e ".[gpu]" # or pip install -e . if no NVIDIA GPU ```