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

harrison/agent_multi_inputs^2
Ankush Gola 2 years ago committed by GitHub
parent 137356dbec
commit 8fdcdf4c2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

1
.gitignore vendored

@ -1,4 +1,5 @@
.vscode/ .vscode/
.idea/
# Byte-compiled / optimized / DLL files # Byte-compiled / optimized / DLL files
__pycache__/ __pycache__/
*.py[cod] *.py[cod]

@ -21,4 +21,10 @@ To install all modules needed for all integrations, run:
``` ```
pip install langchain[all] 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]'
``` ```
Loading…
Cancel
Save