Skip to content

Commit

Permalink
add .idea files to gitignore, add zsh note to installation docs (lang…
Browse files Browse the repository at this point in the history
  • Loading branch information
agola11 authored Dec 13, 2022
1 parent 137356d commit 8fdcdf4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.vscode/
.idea/
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
6 changes: 6 additions & 0 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]'
```

0 comments on commit 8fdcdf4

Please sign in to comment.