HTHou commented on code in PR #776: URL: https://github.com/apache/iotdb-docs/pull/776#discussion_r2127777309
########## src/zh/UserGuide/latest/Deployment-and-Maintenance/AINode_Deployment_apache.md: ########## @@ -80,42 +80,32 @@ AINode 是 IoTDB 在 ConfigNode、DataNode 后提供的第三种内生节点, 推荐下载py311版本应用,导入至用户根目录下 iotdb专用文件夹 中 -3. 切换至iotdb专用文件夹安装Python环境 -以 Miniconda3-py311_24.5.0-0-Linux-x86_64 为例: +3. 验证Python版本 ```shell - bash ./Miniconda3-py311_24.5.0-0-Linux-x86_64.sh - ``` -> 根据提示键入“回车”、“长按空格”、“回车”、“yes”、“yes” <br> -> 关闭当前SSH窗口重新连接 - - 4. 创建专用环境 - -```shell - conda create -n ainode_py python=3.11.9 + python --version ``` - 根据提示键入“y” +4. 创建虚拟环境(在 ainode 目录下执行): - 5. 激活专用环境 + ```shell + python -m venv venv + ``` -```shell - conda activate ainode_py - ``` +5. 激活虚拟环境: - 6. 验证Python版本 + ```shell + source venv/bin/activate + ``` -```shell - python --version - ``` - 7. 下载导入AINode到专用文件夹,切换到专用文件夹并解压安装包 +6. 下载导入AINode到专用文件夹,切换到专用文件夹并解压安装包 ```shell unzip iotdb-enterprise-ainode-1.3.3.2.zip ``` - 8. 配置项修改 +7. 配置项修改 ```shell vi iotdb-enterprise-ainode-1.3.3.2/conf/iotdb-ainode.properties Review Comment: apache的应该是apache-iotdb-1.3.3-ainode.zip 吧 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
