lbry-rocksdb/docs/installation.rst

23 lines
461 B
ReStructuredText
Raw Permalink Normal View History

2014-01-13 19:52:22 +01:00
Installing
==========
2014-01-13 19:52:22 +01:00
.. highlight:: bash
2022-01-18 00:37:23 +01:00
From pypi
*********
.. 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