Skip to content
This repository was archived by the owner on Feb 23, 2024. It is now read-only.

Latest commit

 

History

History
35 lines (35 loc) · 810 Bytes

how_to_run.md

File metadata and controls

35 lines (35 loc) · 810 Bytes

准备工作

conda安装

前往anconda官网,下载 anconda3
或者 Windows 使用 scoop 安装

scoop install conda

克隆项目到本地

git clone https://github.com/GentsunCheng/FindLicense.git

环境配置

conda环境配置

进入到克隆的项目目录下

cd FindLicense

创建conda隔离环境

conda env create -f environment.yml

进入conda环境

conda activate FindLicense

安装所需的python库

pip install -r requirements.txt

运行程序(二选一)

如果你是在纯命令行,则在进入conda环境后,直接使用

python src/app.py

若使用的PyCharm编译器,则直接 Shift+F10 或单击运行按钮启动程序