mirror of
https://github.com/PaiGramTeam/PaiGramDocs.git
synced 2024-11-23 00:11:32 +00:00
57 lines
1.6 KiB
Markdown
57 lines
1.6 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,那么你需要安装Python 3.8+。
|
|||
|
|
|||
|
GitHub Copilot: # Python Poetry环境检查教程
|
|||
|
|
|||
|
### 2.检查Poetry是否已安装
|
|||
|
|
|||
|
首先,我们需要确认你的系统中是否已经安装了Poetry。打开终端或命令提示符,然后输入以下命令:
|
|||
|
|
|||
|
```bash
|
|||
|
poetry --version
|
|||
|
```
|
|||
|
|
|||
|
如果你的系统已经安装了Poetry,那么你应该会看到类似于“Poetry version x.x.x”的输出。
|
|||
|
|
|||
|
如果你的系统提示你没有安装Poetry,那么你需要安装Poetry。
|
|||
|
|
|||
|
#### 安装Poetry
|
|||
|
|
|||
|
打开终端或命令提示符,然后输入以下命令:
|
|||
|
|
|||
|
```bash
|
|||
|
pip install poetry
|
|||
|
poetry --version
|
|||
|
```
|
|||
|
|
|||
|
现在你应该能看到“Poetry version x.x.x”的输出了。
|
|||
|
|
|||
|
GitHub Copilot: # Git环境检查教程
|
|||
|
|
|||
|
## 系统环境检查
|
|||
|
|
|||
|
### 1.检查Git是否已安装
|
|||
|
|
|||
|
首先,我们需要确认你的系统中是否已经安装了Git。打开终端或命令提示符,然后输入以下命令:
|
|||
|
|
|||
|
```bash
|
|||
|
git --version
|
|||
|
```
|
|||
|
|
|||
|
如果你的系统已经安装了Git,那么你应该会看到类似于“git version x.x.x”的输出。
|
|||
|
|
|||
|
如果你的系统提示你没有安装Git,那么你需要安装Git。
|