diff --git a/content/en/overview/mannual/python-sdk/quick-start.md b/content/en/overview/mannual/python-sdk/quick-start.md index fc019d7db557..7d609edd4b9e 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 eb611d41a70d..b8449a5960b1 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服务