From 3f07e614b82b1e6156af96aa85975732e6dcd248 Mon Sep 17 00:00:00 2001 From: zhb <2629144335@qq.com> Date: Fri, 25 Jul 2025 11:23:44 +0000 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E7=AC=AC=E4=B8=89=E6=96=B9?= =?UTF-8?q?=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../cpp_development_environment.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/docs/introductory_tutorial/cpp_development_environment.md b/docs/introductory_tutorial/cpp_development_environment.md index aebb9c6..2f1f11d 100644 --- a/docs/introductory_tutorial/cpp_development_environment.md +++ b/docs/introductory_tutorial/cpp_development_environment.md @@ -248,9 +248,19 @@ rm -rf apriltag-with-pose-estimation-master.zip wget https://gitee.com/LockzhinerAI/apriltag-with-pose-estimation-master/releases/download/apriltag-with-pose-estimation-master/apriltag-with-pose-estimation-master.zip unzip -qo apriltag-with-pose-estimation-master.zip -d third_party # 下载 eigen -rm -rf eigen-master.zip -wget https://gitee.com/LockzhinerAI/eigen-master/releases/download/v0.1/eigen-master.zip -unzip -qo eigen-master.zip -d third_party +rm -rf eigen.zip +wget https://gitee.com/LockzhinerAI/eigen-master/releases/download/v0.1/eigen.zip +unzip -qo eigen.zip -d third_party + +# 下载 jsoncpp +rm -rf jsoncpp.zip +wget https://gitee.com/LockzhinerAI/jsoncpp/releases/download/v0.1/jsoncpp.zip +unzip -qo jsoncpp.zip -d third_party + +# 下载 opus +rm -rf opus-v1.5.2.zip +wget https://gitee.com/LockzhinerAI/opus/releases/download/v0.1/opus-v1.5.2.zip +unzip -qo opus-v1.5.2.zip -d third_party ``` ### 6.5 下载/更新 LockzhinerVisionModule SDK -- Gitee