Skip to content
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,21 @@ Install from source
> pip install git+https://github.com/fossasia/visdom
```

## Local Development Setup (From Scratch)

### 1. Create environment
,,,bash
conda create -n visdom_env python=3.10 -y
conda activate visdom_env
pip install -r requirements.txt
pip install pillow charset-normalizer
pip install -e .
python example/demo.py

If you get module import errors:
export PYTHONPATH=$(pwd)/py
,,,bash

## Usage

Start the server (probably in a `screen` or `tmux`) from the command line:
Expand Down Expand Up @@ -800,3 +815,4 @@ See guidelines for contributing [here.](./CONTRIBUTING.md)

## Acknowledgments
Visdom was inspired by tools like [display](https://github.com/szym/display) and relies on [Plotly](https://plot.ly/) as a plotting front-end.

Loading