2014-01-13 19:52:22 +01:00
|
|
|
Installing
|
2018-02-09 06:37:09 +01:00
|
|
|
==========
|
2014-01-13 19:52:22 +01:00
|
|
|
.. highlight:: bash
|
|
|
|
|
2022-01-18 00:37:23 +01:00
|
|
|
From pypi
|
|
|
|
*********
|
2018-02-09 06:37:09 +01:00
|
|
|
.. code-block:: bash
|
|
|
|
|
2022-01-18 00:37:23 +01:00
|
|
|
pip install lbry-rocksdb
|
2014-01-13 19:52:22 +01:00
|
|
|
|
2022-01-18 00:37:23 +01:00
|
|
|
From source (ubuntu)
|
|
|
|
********************
|
2014-01-13 19:52:22 +01:00
|
|
|
.. code-block:: bash
|
|
|
|
|
2022-01-18 00:37:23 +01:00
|
|
|
sudo apt install build-essential binutils
|
|
|
|
git clone https://github.com/lbryio/lbry-rocksdb.git
|
|
|
|
cd lbry-rocksdb
|
|
|
|
git submodule update --init --recursive
|
|
|
|
git pull --recurse-submodules
|
|
|
|
make clean && make
|
|
|
|
pip install -e .
|
|
|
|
python -m unittest discover . -v
|