From 8fdcdf4c2fe8be72ec0756077e6f047a263a5f3f Mon Sep 17 00:00:00 2001 From: Ankush Gola <9536492+agola11@users.noreply.github.com> Date: Tue, 13 Dec 2022 08:20:22 -0500 Subject: [PATCH] add .idea files to gitignore, add zsh note to installation docs (#329) --- .gitignore | 1 + docs/installation.md | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index 17d753d6..3252ee1f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .vscode/ +.idea/ # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] diff --git a/docs/installation.md b/docs/installation.md index e1ed80f8..2e7fb797 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -21,4 +21,10 @@ To install all modules needed for all integrations, run: ``` pip install langchain[all] +``` + +Note that if you are using `zsh`, you'll need to quote square brackets when passing them as an argument to a command, for example: + +``` +pip install 'langchain[all]' ``` \ No newline at end of file