29 lines
464 B
Markdown
29 lines
464 B
Markdown
# ESD_bleeding_view_tool
|
||
|
||
## gui分支
|
||
|
||
### 安装
|
||
|
||
安装pdm包管理器(如果已安装请跳过)
|
||
```shell
|
||
python3 -m pip install pdm
|
||
```
|
||
|
||
运行代码(第一次运行)
|
||
```shell
|
||
pdm install
|
||
export PDM_IGNORE_ACTIVE_VENV=1 //如果使用虚拟环境的话
|
||
pdm run main
|
||
```
|
||
|
||
运行代码(非第一次运行)
|
||
```shell
|
||
pdm run main
|
||
```
|
||
|
||
安装gui环境(如没有问题请跳过)
|
||
```shell
|
||
sudo apt-get update
|
||
sudo apt-get install libxcb-cursor0
|
||
```
|