README.md 359 Bytes
Newer Older
wanli's avatar
wanli committed
1 2
# evm-store

wanli's avatar
wanli committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
EVM应用商店

# 启动项目

1. 创建虚拟环境
```
cd backend
python3 -m venv ./venv
source venv/bin/activate
```

如果需要退出虚拟环境,命令是:
```
deactivate
```

2. 安装依赖
```
pip3 install -r requirements.txt
```
wanli's avatar
wanli committed
23 24 25 26 27

如果有新安装的包,需要更新requirements.txt文件
```
pip freeze > requirements.txt
```