From 6b3eeea04e7ae3b43fe37384d6b070110e50f259 Mon Sep 17 00:00:00 2001 From: ougongchang Date: Sat, 25 Oct 2025 17:53:33 +0800 Subject: [PATCH] modify pip install address --- README_CN.md | 4 ++-- tests/st/common/obs_client/obs_persistence_api_test.cpp | 2 +- third_party/P2P-Transfer/CMakeLists.txt | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README_CN.md b/README_CN.md index 6a80e22..ee2852c 100644 --- a/README_CN.md +++ b/README_CN.md @@ -70,12 +70,12 @@ yuanrong-datasystem 的部署视图如上图所示: - 安装 yuanrong-datasystem 完整发行版(包含Python SDK、C++ SDK以及命令行工具): ```bash - pip install yuanrong-datasystem + pip install pip install https://openyuanrong.obs.cn-southwest-2.myhuaweicloud.com/openyuanrong_datasystem-0.5.0-cp39-cp39-manylinux_2_34_x86_64.whl ``` - 仅安装 yuanrong-datasystem Python SDK(不包含C++ SDK以及命令行工具): ```bash - pip install yuanrong-datasystem-sdk + pip install pip install https://openyuanrong.obs.cn-southwest-2.myhuaweicloud.com/openyuanrong_datasystem_sdk-0.5.0-cp39-cp39-manylinux_2_34_x86_64.whl ``` #### 源码编译方式安装 diff --git a/tests/st/common/obs_client/obs_persistence_api_test.cpp b/tests/st/common/obs_client/obs_persistence_api_test.cpp index cb9d16b..ca32b27 100644 --- a/tests/st/common/obs_client/obs_persistence_api_test.cpp +++ b/tests/st/common/obs_client/obs_persistence_api_test.cpp @@ -38,7 +38,7 @@ public: protected: RandomData randData_; - const std::string obsEndpoint_ = "ddl.test.huawei.com:19000"; + const std::string obsEndpoint_ = "ddl.test.example.com:19000"; const std::string obsAk_ = "3rtJpvkP4zowTDsx6XiE"; const std::string obsSk_ = "SJx5Zecs7SL7I6Au9XpylG9LwPF29kMwIxisI5Xs"; const std::string bucket_ = "test"; diff --git a/third_party/P2P-Transfer/CMakeLists.txt b/third_party/P2P-Transfer/CMakeLists.txt index 6342008..9cd69c8 100644 --- a/third_party/P2P-Transfer/CMakeLists.txt +++ b/third_party/P2P-Transfer/CMakeLists.txt @@ -6,7 +6,7 @@ project( p2p-transfer VERSION 0.1.0 DESCRIPTION "Fast NPU peer to peer transfer library" - HOMEPAGE_URL "https://codehub-y.huawei.com/SIR/usched/P2P-Transfer" + HOMEPAGE_URL "https://example.com/SIR/usched/P2P-Transfer" LANGUAGES CXX ) -- Gitee