项目名称
[项目描述在这里]
如何开始
创建环境
我使用conda在Unix环境中创建环境。
$ conda init
$ conda create -n ENV_NAME python=3.8.5
$ conda activate ENV_NAME
安装要求
需求已经放在单独的requirements.txt文件中。 要安装它们,请运行以下命令:
$ pip install -r requirements.txt
跑步
项目内容
[对项目的任何特定更改都在这里]
.
├── app
│ ├── app.py
│ ├── static
│ │ └── style.css
│ └── templates
│ ├── home.html
│ ├── layout.html
│ └── result.html
├── input
│
2022-01-14 17:37:15
8KB
Python
1