From ebb9c099de3f43fcc6e1156e58534a94cae8b1bb Mon Sep 17 00:00:00 2001 From: yiwen92 <34636520+yiwen92@users.noreply.github.com> Date: Fri, 24 Jan 2025 11:16:11 +0800 Subject: [PATCH 1/2] Update operational_faq.md revise one FAQ --- site/en/faq/operational_faq.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/site/en/faq/operational_faq.md b/site/en/faq/operational_faq.md index 86cf3c1d9..ac63e089f 100644 --- a/site/en/faq/operational_faq.md +++ b/site/en/faq/operational_faq.md @@ -70,7 +70,10 @@ See [Run Milvus on Windows](https://milvus.io/blog/2021-11-19-run-milvus-2.0-on- #### I got an error when installing pymilvus on Windows. What shall I do? -It is not recommended to install PyMilvus on Windows. But if you have to install PyMilvus on Windows but got an error, try installing it in a [Conda](https://docs.conda.io/projects/conda/en/latest/user-guide/install/index.html) environment. See [Install Milvus SDK](install-pymilvus.md) for more information about how to install PyMilvus in the Conda environment. +Please try to use the following command to update pymilvus to the newest version. +```shell +pip install --upgrade pymilvus +``` #### Can I deploy Milvus when disconnected from the Internet? From 799bb4d049dfac0e2921822dffe43ec5487e48ed Mon Sep 17 00:00:00 2001 From: liyun95 <105278390+liyun95@users.noreply.github.com> Date: Fri, 24 Jan 2025 11:19:21 +0800 Subject: [PATCH 2/2] Update operational_faq.md --- site/en/faq/operational_faq.md | 1 + 1 file changed, 1 insertion(+) diff --git a/site/en/faq/operational_faq.md b/site/en/faq/operational_faq.md index ac63e089f..f052ab44c 100644 --- a/site/en/faq/operational_faq.md +++ b/site/en/faq/operational_faq.md @@ -71,6 +71,7 @@ See [Run Milvus on Windows](https://milvus.io/blog/2021-11-19-run-milvus-2.0-on- #### I got an error when installing pymilvus on Windows. What shall I do? Please try to use the following command to update pymilvus to the newest version. + ```shell pip install --upgrade pymilvus ```