Skip to content

Commit 53dad75

Browse files
authored
Merge pull request #1863 from tangzz-radxa/docs/q8b-venv-usage-h3-to-h2-20260622
docs(common/dev): promote venv-usage sub-headings from H3 to H2
2 parents 7fa3330 + 5ba59af commit 53dad75

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

docs/common/dev/_venv_usage.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,31 +9,31 @@ error: externally-managed-environment
99
install.
1010
```
1111

12-
### 安装虚拟环境
12+
## 安装虚拟环境
1313

1414
```bash
1515
sudo apt install python3-venv
1616
```
1717

18-
### 建立虚拟环境
18+
## 建立虚拟环境
1919

2020
```bash
2121
python3 -m venv .venv
2222
```
2323

24-
### 进入虚拟环境
24+
## 进入虚拟环境
2525

2626
```bash
2727
source .venv/bin/activate
2828
```
2929

30-
### 更新 pip
30+
## 更新 pip
3131

3232
```bash
3333
pip3 install --upgrade pip
3434
```
3535

36-
### 退出虚拟环境
36+
## 退出虚拟环境
3737

3838
```bash
3939
deactivate

i18n/en/docusaurus-plugin-content-docs/current/common/dev/_venv_usage.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,31 +9,31 @@ error: externally-managed-environment
99
install.
1010
```
1111

12-
### Install the virtual environment tools
12+
## Install the virtual environment tools
1313

1414
```bash
1515
sudo apt install python3-venv
1616
```
1717

18-
### Create a virtual environment
18+
## Create a virtual environment
1919

2020
```bash
2121
python3 -m venv .venv
2222
```
2323

24-
### Activate the virtual environment
24+
## Activate the virtual environment
2525

2626
```bash
2727
source .venv/bin/activate
2828
```
2929

30-
### Upgrade pip
30+
## Upgrade pip
3131

3232
```bash
3333
pip3 install --upgrade pip
3434
```
3535

36-
### Deactivate the virtual environment
36+
## Deactivate the virtual environment
3737

3838
```bash
3939
deactivate

0 commit comments

Comments
 (0)