Improve deps installation by converting them to one liner (#967)

This commit is contained in:
Sidharth Mohanty
2023-11-29 23:38:34 +05:30
committed by GitHub
parent 38426a7af1
commit e35eaf1bfc
13 changed files with 21 additions and 272 deletions

View File

@@ -26,16 +26,7 @@
},
"outputs": [],
"source": [
"!pip install embedchain"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"!pip install embedchain[dataloaders]"
"!pip install embedchain[dataloaders,pinecone]"
]
},
{
@@ -44,20 +35,9 @@
"id": "nGnpSYAAh2bQ"
},
"source": [
"### Step-2: Set environment variables needed for Pinecone and install the dependencies.\n",
"### Step-2: Set environment variables needed for Pinecone\n",
"\n",
"You can find this env variable on your [OpenAI dashboard](https://platform.openai.com/account/api-keys) and [Pinecone dashboard](https://app.pinecone.io/). Now lets install the dependencies needed for Pinecone."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "-MUFRfxV7Jk7"
},
"outputs": [],
"source": [
"!pip install --upgrade 'embedchain[pinecone]'"
"You can find this env variable on your [OpenAI dashboard](https://platform.openai.com/account/api-keys) and [Pinecone dashboard](https://app.pinecone.io/)."
]
},
{