From 24cba054d38de54546e3fdb74aa907450a6eb9f5 Mon Sep 17 00:00:00 2001 From: Leto_b Date: Mon, 28 Apr 2025 09:52:33 +0800 Subject: [PATCH] fix install dependency command in python native api --- src/UserGuide/Master/Table/API/Programming-Python-Native-API.md | 2 +- src/UserGuide/Master/Tree/API/Programming-Python-Native-API.md | 2 +- src/UserGuide/V1.3.x/API/Programming-Python-Native-API.md | 2 +- src/UserGuide/dev-1.3/API/Programming-Python-Native-API.md | 2 +- src/UserGuide/latest-Table/API/Programming-Python-Native-API.md | 2 +- src/UserGuide/latest/API/Programming-Python-Native-API.md | 2 +- .../UserGuide/Master/Table/API/Programming-Python-Native-API.md | 2 +- .../UserGuide/Master/Tree/API/Programming-Python-Native-API.md | 2 +- src/zh/UserGuide/V1.3.x/API/Programming-Python-Native-API.md | 2 +- src/zh/UserGuide/dev-1.3/API/Programming-Python-Native-API.md | 2 +- .../UserGuide/latest-Table/API/Programming-Python-Native-API.md | 2 +- src/zh/UserGuide/latest/API/Programming-Python-Native-API.md | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/UserGuide/Master/Table/API/Programming-Python-Native-API.md b/src/UserGuide/Master/Table/API/Programming-Python-Native-API.md index d9733f307..8b1b79bb1 100644 --- a/src/UserGuide/Master/Table/API/Programming-Python-Native-API.md +++ b/src/UserGuide/Master/Table/API/Programming-Python-Native-API.md @@ -27,7 +27,7 @@ IoTDB provides a Python native client driver and a session pool management mecha To use the IoTDB Python API, install the required package using pip: ```Java -pip3 install apache-iotdb==2.0.1b0 +pip3 install apache-iotdb>=2.0 ``` ## 2. Read and Write Operations diff --git a/src/UserGuide/Master/Tree/API/Programming-Python-Native-API.md b/src/UserGuide/Master/Tree/API/Programming-Python-Native-API.md index ac8553bb3..1c8316507 100644 --- a/src/UserGuide/Master/Tree/API/Programming-Python-Native-API.md +++ b/src/UserGuide/Master/Tree/API/Programming-Python-Native-API.md @@ -29,7 +29,7 @@ You have to install thrift (>=0.13) before using the package. ## 2. How to use (Example) -First, download the package: `pip3 install apache-iotdb` +First, download the package: `pip3 install apache-iotdb>=2.0` You can get an example of using the package to read and write data at here:[Session Example](https://github.com/apache/iotdb/blob/rc/2.0.1/iotdb-client/client-py/session_example.py) diff --git a/src/UserGuide/V1.3.x/API/Programming-Python-Native-API.md b/src/UserGuide/V1.3.x/API/Programming-Python-Native-API.md index 2f16b4205..843a52b8c 100644 --- a/src/UserGuide/V1.3.x/API/Programming-Python-Native-API.md +++ b/src/UserGuide/V1.3.x/API/Programming-Python-Native-API.md @@ -24,7 +24,7 @@ You have to install thrift (>=0.13) before using the package. ## How to use (Example) -First, download the package: `pip3 install apache-iotdb` +First, download the package: `pip3 install "apache-iotdb<2.0"` You can get an example of using the package to read and write data at here: [Session Example](https://github.com/apache/iotdb/blob/rc/1.3.3/iotdb-client/client-py/SessionExample.py) diff --git a/src/UserGuide/dev-1.3/API/Programming-Python-Native-API.md b/src/UserGuide/dev-1.3/API/Programming-Python-Native-API.md index 0e8ec1450..435e716a4 100644 --- a/src/UserGuide/dev-1.3/API/Programming-Python-Native-API.md +++ b/src/UserGuide/dev-1.3/API/Programming-Python-Native-API.md @@ -24,7 +24,7 @@ You have to install thrift (>=0.13) before using the package. ## How to use (Example) -First, download the package: `pip3 install apache-iotdb` +First, download the package: `pip3 install "apache-iotdb<2.0"` You can get an example of using the package to read and write data at here: [Session Example](https://github.com/apache/iotdb/blob/rc/1.3.3/iotdb-client/client-py/SessionExample.py) diff --git a/src/UserGuide/latest-Table/API/Programming-Python-Native-API.md b/src/UserGuide/latest-Table/API/Programming-Python-Native-API.md index d9733f307..8b1b79bb1 100644 --- a/src/UserGuide/latest-Table/API/Programming-Python-Native-API.md +++ b/src/UserGuide/latest-Table/API/Programming-Python-Native-API.md @@ -27,7 +27,7 @@ IoTDB provides a Python native client driver and a session pool management mecha To use the IoTDB Python API, install the required package using pip: ```Java -pip3 install apache-iotdb==2.0.1b0 +pip3 install apache-iotdb>=2.0 ``` ## 2. Read and Write Operations diff --git a/src/UserGuide/latest/API/Programming-Python-Native-API.md b/src/UserGuide/latest/API/Programming-Python-Native-API.md index ac8553bb3..1c8316507 100644 --- a/src/UserGuide/latest/API/Programming-Python-Native-API.md +++ b/src/UserGuide/latest/API/Programming-Python-Native-API.md @@ -29,7 +29,7 @@ You have to install thrift (>=0.13) before using the package. ## 2. How to use (Example) -First, download the package: `pip3 install apache-iotdb` +First, download the package: `pip3 install apache-iotdb>=2.0` You can get an example of using the package to read and write data at here:[Session Example](https://github.com/apache/iotdb/blob/rc/2.0.1/iotdb-client/client-py/session_example.py) diff --git a/src/zh/UserGuide/Master/Table/API/Programming-Python-Native-API.md b/src/zh/UserGuide/Master/Table/API/Programming-Python-Native-API.md index 447c45670..8608143f4 100644 --- a/src/zh/UserGuide/Master/Table/API/Programming-Python-Native-API.md +++ b/src/zh/UserGuide/Master/Table/API/Programming-Python-Native-API.md @@ -26,7 +26,7 @@ 安装依赖包: ```Java -pip3 install apache-iotdb==2.0.1b0 +pip3 install apache-iotdb>=2.0 ``` ## 2. 读写操作 diff --git a/src/zh/UserGuide/Master/Tree/API/Programming-Python-Native-API.md b/src/zh/UserGuide/Master/Tree/API/Programming-Python-Native-API.md index 2412301a1..50a9e07b6 100644 --- a/src/zh/UserGuide/Master/Tree/API/Programming-Python-Native-API.md +++ b/src/zh/UserGuide/Master/Tree/API/Programming-Python-Native-API.md @@ -27,7 +27,7 @@ ## 2. 如何使用 (示例) -首先下载包:`pip3 install apache-iotdb` +首先下载包:`pip3 install apache-iotdb>=2.0` 您可以从这里得到一个使用该包进行数据读写的例子:[Session Example](https://github.com/apache/iotdb/blob/rc/2.0.1/iotdb-client/client-py/session_example.py) diff --git a/src/zh/UserGuide/V1.3.x/API/Programming-Python-Native-API.md b/src/zh/UserGuide/V1.3.x/API/Programming-Python-Native-API.md index 7664ad9f4..1d325bd80 100644 --- a/src/zh/UserGuide/V1.3.x/API/Programming-Python-Native-API.md +++ b/src/zh/UserGuide/V1.3.x/API/Programming-Python-Native-API.md @@ -27,7 +27,7 @@ ## 如何使用 (示例) -首先下载包:`pip3 install apache-iotdb` +首先下载包:`pip3 install "apache-iotdb<2.0"` 您可以从这里得到一个使用该包进行数据读写的例子:[Session Example](https://github.com/apache/iotdb/blob/rc/1.3.3/iotdb-client/client-py/SessionExample.py) diff --git a/src/zh/UserGuide/dev-1.3/API/Programming-Python-Native-API.md b/src/zh/UserGuide/dev-1.3/API/Programming-Python-Native-API.md index 7664ad9f4..1d325bd80 100644 --- a/src/zh/UserGuide/dev-1.3/API/Programming-Python-Native-API.md +++ b/src/zh/UserGuide/dev-1.3/API/Programming-Python-Native-API.md @@ -27,7 +27,7 @@ ## 如何使用 (示例) -首先下载包:`pip3 install apache-iotdb` +首先下载包:`pip3 install "apache-iotdb<2.0"` 您可以从这里得到一个使用该包进行数据读写的例子:[Session Example](https://github.com/apache/iotdb/blob/rc/1.3.3/iotdb-client/client-py/SessionExample.py) diff --git a/src/zh/UserGuide/latest-Table/API/Programming-Python-Native-API.md b/src/zh/UserGuide/latest-Table/API/Programming-Python-Native-API.md index 447c45670..8608143f4 100644 --- a/src/zh/UserGuide/latest-Table/API/Programming-Python-Native-API.md +++ b/src/zh/UserGuide/latest-Table/API/Programming-Python-Native-API.md @@ -26,7 +26,7 @@ 安装依赖包: ```Java -pip3 install apache-iotdb==2.0.1b0 +pip3 install apache-iotdb>=2.0 ``` ## 2. 读写操作 diff --git a/src/zh/UserGuide/latest/API/Programming-Python-Native-API.md b/src/zh/UserGuide/latest/API/Programming-Python-Native-API.md index 2412301a1..50a9e07b6 100644 --- a/src/zh/UserGuide/latest/API/Programming-Python-Native-API.md +++ b/src/zh/UserGuide/latest/API/Programming-Python-Native-API.md @@ -27,7 +27,7 @@ ## 2. 如何使用 (示例) -首先下载包:`pip3 install apache-iotdb` +首先下载包:`pip3 install apache-iotdb>=2.0` 您可以从这里得到一个使用该包进行数据读写的例子:[Session Example](https://github.com/apache/iotdb/blob/rc/2.0.1/iotdb-client/client-py/session_example.py)