This is an automated email from the ASF dual-hosted git repository.

albumenj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 876b5c34261 docs: Update Python SDK download method (#3098)
876b5c34261 is described below

commit 876b5c34261a06bdd8c37866ebc1e64bf02ed924
Author: Zaki <[email protected]>
AuthorDate: Fri Feb 7 15:06:07 2025 +0800

    docs: Update Python SDK download method (#3098)
---
 content/en/overview/mannual/python-sdk/quick-start.md  | 15 +++++++++++----
 .../zh-cn/overview/mannual/python-sdk/quick-start.md   | 18 ++++++++++++++----
 2 files changed, 25 insertions(+), 8 deletions(-)

diff --git a/content/en/overview/mannual/python-sdk/quick-start.md 
b/content/en/overview/mannual/python-sdk/quick-start.md
index fc019d7db55..7d609edd4b9 100644
--- a/content/en/overview/mannual/python-sdk/quick-start.md
+++ b/content/en/overview/mannual/python-sdk/quick-start.md
@@ -18,10 +18,17 @@ This guide will help you get started with Dubbo in Python 
with a simple working
 
 ## 2. Install Dubbo-Python
 
-```bash
-git clone https://github.com/apache/dubbo-python.git
-cd dubbo-python && pip install .
-```
+- Install Directly
+
+   ```sh
+   pip install apache-dubbo
+   ```
+- Install from source
+
+   ```sh
+   git clone https://github.com/apache/dubbo-python.git
+   cd dubbo-python && pip install .
+   ```
 
 ## 3. Build a Dubbo Service
 
diff --git a/content/zh-cn/overview/mannual/python-sdk/quick-start.md 
b/content/zh-cn/overview/mannual/python-sdk/quick-start.md
index eb611d41a70..b8449a5960b 100644
--- a/content/zh-cn/overview/mannual/python-sdk/quick-start.md
+++ b/content/zh-cn/overview/mannual/python-sdk/quick-start.md
@@ -20,10 +20,20 @@ weight: 1
 
 ## 2 安装Dubbo-python
 
-```python
-git clone https://github.com/apache/dubbo-python.git
-cd dubbo-python && pip install .
-```
+- 直接安装
+
+  ```sh
+  pip install apache-dubbo
+  ```
+
+- 从源码安装
+
+  ```sh
+  git clone https://github.com/apache/dubbo-python.git
+  cd dubbo-python && pip install .
+  ```
+
+  
 
 ## 3 构建Dubbo服务
 

Reply via email to