Skip to content

Commit

Permalink
docs: Update Python SDK download method (#3098)
Browse files Browse the repository at this point in the history
  • Loading branch information
cnzakii authored Feb 7, 2025
1 parent 8deabf8 commit 876b5c3
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 8 deletions.
15 changes: 11 additions & 4 deletions content/en/overview/mannual/python-sdk/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
18 changes: 14 additions & 4 deletions content/zh-cn/overview/mannual/python-sdk/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -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服务

Expand Down

0 comments on commit 876b5c3

Please sign in to comment.