mirror of
https://github.com/PaiGramTeam/PaiGramDocs.git
synced 2024-11-26 10:16:32 +00:00
28 lines
247 B
Markdown
28 lines
247 B
Markdown
|
# 启动项目
|
||
|
|
||
|
## 激活虚拟环境
|
||
|
|
||
|
### linux
|
||
|
|
||
|
```bash
|
||
|
source venv/bin/activate
|
||
|
```
|
||
|
|
||
|
### windows
|
||
|
|
||
|
```cmd
|
||
|
venv\Scripts\activate.bat
|
||
|
```
|
||
|
|
||
|
### windows powershell
|
||
|
|
||
|
```powershell
|
||
|
.\venv\Scripts\Activate.ps1
|
||
|
```
|
||
|
|
||
|
## 运行
|
||
|
|
||
|
```bash
|
||
|
python run.py
|
||
|
```
|