From 9c863c02d44632e94a0f16f377c39d82d8be33fd Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Mon, 21 Mar 2022 23:18:42 -0400 Subject: [PATCH] update readme --- README.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 53d96ad..cad3163 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,20 @@ scribe --db_dir /your/db/path --daemon_url rpcuser:rpcpass@localhost:9245 ## Running from source -Installing from source is also relatively painless. Full instructions are in [INSTALL.md](INSTALL.md) +1. clone the scribe scribe +``` +git clone https://github.com/lbryio/scribe.git +cd scribe +``` +2. make a virtual env +``` +python3.9 -m venv scribe-venv +``` +3. from the virtual env, install scribe +``` +source scribe-venv/bin/activate +pip install -e . +``` ## Contributing