From b1e6a89acdbad26973976ef2d4d07a193e104a4c Mon Sep 17 00:00:00 2001 From: Chad Bailey Date: Wed, 17 Jan 2024 16:56:17 +0000 Subject: [PATCH] README tweaks --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 364ea5d91..74459f38a 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ python -m build This builds the package. To use the package locally (eg to run sample files), run ``` -pip install . +pip install --editable . ``` If you want to use this package from another directory, you can run: @@ -51,5 +51,5 @@ AZURE_CHATGPT_DEPLOYMENT_ID If you have those environment variables stored in an .env file, you can quickly load them into your terminal's environment by running this: ```bash -$ export $(grep -v '^#' .env | xargs) +export $(grep -v '^#' .env | xargs) ```