From b84965ed9d8ae3ca43054d236f6c43347ccd712c Mon Sep 17 00:00:00 2001 From: fangpanpan <53251079+fangpanpan@users.noreply.github.com> Date: Mon, 9 Sep 2019 15:39:34 +0800 Subject: [PATCH] Update Connector.md There is a typo in the python connector installation path. --- documentation/webdocs/markdowndocs/Connector.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/webdocs/markdowndocs/Connector.md b/documentation/webdocs/markdowndocs/Connector.md index cfdac5b94a..42bca32948 100644 --- a/documentation/webdocs/markdowndocs/Connector.md +++ b/documentation/webdocs/markdowndocs/Connector.md @@ -215,13 +215,13 @@ All the error codes and error messages can be found in `TSDBError.java` . For a Users can find python client packages in our source code directory _src/connector/python_. There are two directories corresponding two python versions. Please choose the correct package to install. Users can use _pip_ command to install: ```cmd -pip install src/connector/python/python2/ +pip install src/connector/python/[linux|Windows]/python2/ ``` or ``` -pip install src/connector/python/python3/ +pip install src/connector/python//[linux|Windows]python3/ ``` If _pip_ command is not installed on the system, users can choose to install pip or just copy the _taos_ directory in the python client directory to the application directory to use.