README.md 317 字节
Newer Older
Q
qiaolongfei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
# VisualDL


### How to use
#### Step 1: build and install Python package
```shell
python setup.py bdist_wheel
cd dist
pip install visualdl-0.0.1-py2-none-any.whl
```

#### Step 2: build frontend
```shell
cd visualdl/frontend
npm install
npm run build
```

### Step 3: run
```
python bin/visual_dl.py --port=8888
Q
Qiao Longfei 已提交
22
```