update readme

This commit is contained in:
Jack Robison 2022-03-21 23:18:42 -04:00
parent 1badc5f38c
commit 9c863c02d4
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2

View file

@ -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