Skip to content

Commit 8f3f6e2

Browse files
authored
Merge pull request #371 from badaboot/add-double-quotes-around-install
fix: add double quotes around pip install
2 parents b218232 + 97679d4 commit 8f3f6e2

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

_includes/code/quickstart/clients.install.new.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import TabItem from '@theme/TabItem';
55
<TabItem value="py" label="Python">
66

77
```bash
8-
pip install -U weaviate-client[agents]
8+
pip install -U "weaviate-client[agents]"
99
```
1010

1111
</TabItem>

docs/agents/query/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Install the client library using the following command:
4747
<TabItem value="py_agents" label="Python">
4848

4949
```shell
50-
pip install -U weaviate-client[agents]
50+
pip install -U "weaviate-client[agents]"
5151
```
5252

5353
#### Troubleshooting: Force `pip` to install the latest version

docs/agents/recipes/personalization-agent-get-started-movies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ To help you get started, we're providing a few demo datasets, available on Huggi
2424
For this example, we will be using the movies dataset to create a movie recommender service
2525

2626
```python
27-
!pip install weaviate-client[agents] datasets
27+
!pip install "weaviate-client[agents]" datasets
2828
```
2929

3030
## Setting Up Weaviate & Importing Data

docs/agents/recipes/query-agent-get-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ To use the Weaviate Query Agent, first, create a [Weaviate Cloud](https://weavia
3636
> Info: We recommend using [Weaviate Embeddings](https://docs.weaviate.io/weaviate/model-providers/weaviate) so you do not have to provide any extra keys for external embedding providers.
3737
3838
```python
39-
!pip install weaviate-client[agents] datasets
39+
!pip install "weaviate-client[agents]" datasets
4040
```
4141

4242
```python

docs/agents/transformation/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Install the client library using the following command:
6565
<TabItem value="py_agents" label="Python">
6666

6767
```shell
68-
pip install -U weaviate-client[agents]
68+
pip install -U "weaviate-client[agents]"
6969
```
7070

7171
#### Troubleshooting: Force `pip` to install the latest version

docs/weaviate/client-libraries/python/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ ports:
8383
You can install the Weaviate client library with the optional agents extras to use [Weaviate Agents](../../../agents/index.md). Install the client library using the following command:
8484

8585
```bash
86-
pip install -U weaviate-client[agents]
86+
pip install -U "weaviate-client[agents]"
8787
```
8888

8989
## Get started

0 commit comments

Comments
 (0)