mirror of
https://github.com/PaiGramTeam/PaiGramDocs.git
synced 2024-11-26 10:16:32 +00:00
604 B
604 B
安装项目
::: tip
此处以 PaiGram 为例,其余项目同理
:::
克隆项目
git clone https://github.com/PaiGramTeam/PaiGram.git
cd PaiGram
git submodule update --init --recursive
创建虚拟环境
python -m venv venv
激活虚拟环境
linux
source venv/bin/activate
windows
venv\Scripts\activate.bat
windows powershell
.\venv\Scripts\Activate.ps1
安装项目依赖
使用 poetry
poetry install --extras all
使用 pip
pip install -r requirements.txt