mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
87e502c6bc
Co-authored-by: jacoblee93 <jacoblee93@gmail.com> Co-authored-by: Harrison Chase <hw.chase.17@gmail.com>
13 lines
385 B
Plaintext
13 lines
385 B
Plaintext
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
import CodeBlock from "@theme/CodeBlock";
|
|
|
|
<Tabs>
|
|
<TabItem value="pip" label="Pip" default>
|
|
<CodeBlock language="bash">pip install langchain</CodeBlock>
|
|
</TabItem>
|
|
<TabItem value="conda" label="Conda">
|
|
<CodeBlock language="bash">conda install langchain -c conda-forge</CodeBlock>
|
|
</TabItem>
|
|
</Tabs>
|