Skip to content

Commit 4b11aee

Browse files
authored
fix install dependency command in python native api (#725)
1 parent aba53ce commit 4b11aee

12 files changed

Lines changed: 12 additions & 12 deletions

src/UserGuide/Master/Table/API/Programming-Python-Native-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ IoTDB provides a Python native client driver and a session pool management mecha
2727
To use the IoTDB Python API, install the required package using pip:
2828

2929
```Java
30-
pip3 install apache-iotdb==2.0.1b0
30+
pip3 install apache-iotdb>=2.0
3131
```
3232

3333
## 2. Read and Write Operations

src/UserGuide/Master/Tree/API/Programming-Python-Native-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ You have to install thrift (>=0.13) before using the package.
2929

3030
## 2. How to use (Example)
3131

32-
First, download the package: `pip3 install apache-iotdb`
32+
First, download the package: `pip3 install apache-iotdb>=2.0`
3333

3434
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)
3535

src/UserGuide/V1.3.x/API/Programming-Python-Native-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ You have to install thrift (>=0.13) before using the package.
2424

2525
## How to use (Example)
2626

27-
First, download the package: `pip3 install apache-iotdb`
27+
First, download the package: `pip3 install "apache-iotdb<2.0"`
2828

2929
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)
3030

src/UserGuide/dev-1.3/API/Programming-Python-Native-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ You have to install thrift (>=0.13) before using the package.
2424

2525
## How to use (Example)
2626

27-
First, download the package: `pip3 install apache-iotdb`
27+
First, download the package: `pip3 install "apache-iotdb<2.0"`
2828

2929
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)
3030

src/UserGuide/latest-Table/API/Programming-Python-Native-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ IoTDB provides a Python native client driver and a session pool management mecha
2727
To use the IoTDB Python API, install the required package using pip:
2828

2929
```Java
30-
pip3 install apache-iotdb==2.0.1b0
30+
pip3 install apache-iotdb>=2.0
3131
```
3232

3333
## 2. Read and Write Operations

src/UserGuide/latest/API/Programming-Python-Native-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ You have to install thrift (>=0.13) before using the package.
2929

3030
## 2. How to use (Example)
3131

32-
First, download the package: `pip3 install apache-iotdb`
32+
First, download the package: `pip3 install apache-iotdb>=2.0`
3333

3434
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)
3535

src/zh/UserGuide/Master/Table/API/Programming-Python-Native-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
安装依赖包:
2727

2828
```Java
29-
pip3 install apache-iotdb==2.0.1b0
29+
pip3 install apache-iotdb>=2.0
3030
```
3131

3232
## 2. 读写操作

src/zh/UserGuide/Master/Tree/API/Programming-Python-Native-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
## 2. 如何使用 (示例)
2929

30-
首先下载包:`pip3 install apache-iotdb`
30+
首先下载包:`pip3 install apache-iotdb>=2.0`
3131

3232
您可以从这里得到一个使用该包进行数据读写的例子:[Session Example](https://github.com/apache/iotdb/blob/rc/2.0.1/iotdb-client/client-py/session_example.py)
3333

src/zh/UserGuide/V1.3.x/API/Programming-Python-Native-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
## 如何使用 (示例)
2929

30-
首先下载包:`pip3 install apache-iotdb`
30+
首先下载包:`pip3 install "apache-iotdb<2.0"`
3131

3232
您可以从这里得到一个使用该包进行数据读写的例子:[Session Example](https://github.com/apache/iotdb/blob/rc/1.3.3/iotdb-client/client-py/SessionExample.py)
3333

src/zh/UserGuide/dev-1.3/API/Programming-Python-Native-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
## 如何使用 (示例)
2929

30-
首先下载包:`pip3 install apache-iotdb`
30+
首先下载包:`pip3 install "apache-iotdb<2.0"`
3131

3232
您可以从这里得到一个使用该包进行数据读写的例子:[Session Example](https://github.com/apache/iotdb/blob/rc/1.3.3/iotdb-client/client-py/SessionExample.py)
3333

0 commit comments

Comments
 (0)