add .idea files to gitignore, add zsh note to installation docs (#329)

This commit is contained in:
Ankush Gola
2022-12-13 08:20:22 -05:00
committed by GitHub
parent 137356dbec
commit 8fdcdf4c2f
2 changed files with 7 additions and 0 deletions

View File

@@ -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]'
```