From 9d20fd51356b24b0222e69a89b037aebd0f6ebc4 Mon Sep 17 00:00:00 2001 From: Yasin Tatar Date: Tue, 11 Apr 2023 05:54:13 +0200 Subject: [PATCH] add: conda installation instructions (#2678) Hi, just wanted to mention that I added `langchain` to [conda-forge](https://github.com/conda-forge/langchain-feedstock), so that it can be installed with `conda`/`mamba` etc. This makes it available to some corporate users with custom conda-servers and people who like to manage their python envs with conda. --- README.md | 2 ++ docs/getting_started/getting_started.md | 2 ++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index 00eec51f..4d4f5e36 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,8 @@ Please fill out [this form](https://forms.gle/57d8AmXBYp8PP8tZA) and we'll set u ## Quick Install `pip install langchain` +or +`conda install langchain -c conda-forge` ## 🤔 What is this? diff --git a/docs/getting_started/getting_started.md b/docs/getting_started/getting_started.md index 054d3cf6..fdd8f8ae 100644 --- a/docs/getting_started/getting_started.md +++ b/docs/getting_started/getting_started.md @@ -9,6 +9,8 @@ To get started, install LangChain with the following command: ```bash pip install langchain +# or +conda install langchain -c conda-forge ```