mirror of
https://github.com/PaiGramTeam/PaiGramDocs.git
synced 2024-11-26 10:16:32 +00:00
53 lines
1.5 KiB
Markdown
53 lines
1.5 KiB
Markdown
# 环境检查<Badge type="tip" text="简单" />
|
||
|
||
## Python 环境检查教程
|
||
|
||
### 1.检查Python版本
|
||
|
||
首先,我们需要确认你的系统中是否已经安装了 Python 3.8+ 。打开终端或命令提示符,然后输入以下命令:
|
||
|
||
```bash
|
||
python --version
|
||
```
|
||
|
||
如果你的系统已经安装了Python 3.8+,那么你应该会看到类似于“Python 3.8.x” “Python 3.9.x” ... 的输出。
|
||
|
||
如果系统提示你没有安装Python,那么你需要安装 Python 3.8+。
|
||
|
||
### 2.检查Poetry是否已安装
|
||
|
||
首先,我们需要确认你的系统中是否已经安装了Poetry。打开终端或命令提示符,然后输入以下命令:
|
||
|
||
```bash
|
||
poetry --version
|
||
```
|
||
|
||
如果你的系统已经安装了Poetry,那么你应该会看到类似于“Poetry version x.x.x”的输出。
|
||
|
||
如果你的系统提示你没有安装Poetry,那么你需要安装Poetry。
|
||
|
||
#### 通过 pip 安装Poetry
|
||
|
||
打开终端或命令提示符,然后输入以下命令:
|
||
|
||
```bash
|
||
pip install poetry
|
||
poetry --version
|
||
```
|
||
|
||
现在你应该能看到 “Poetry version x.x.x” 的输出了。
|
||
|
||
## 系统环境检查
|
||
|
||
### 1.检查Git是否已安装
|
||
|
||
首先,我们需要确认你的系统中是否已经安装了Git。打开终端或命令提示符,然后输入以下命令:
|
||
|
||
```bash
|
||
git --version
|
||
```
|
||
|
||
如果你的系统已经安装了Git,那么你应该会看到类似于“git version x.x.x”的输出。
|
||
|
||
如果你的系统提示你没有安装Git,那么你需要安装Git。
|