mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-31 10:23:18 +00:00
add .idea files to gitignore, add zsh note to installation docs (#329)
This commit is contained in:
1
.gitignore
vendored
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]
|
||||||
|
@@ -22,3 +22,9 @@ 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]'
|
||||||
|
```
|
Reference in New Issue
Block a user