PaiGramDocs/docs/quick-start/env.md

57 lines
1.6 KiB
Markdown
Raw Normal View History

2023-10-20 17:15:41 +00:00
# 环境检查<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。