2014-05-17 13:32:20 +00:00
|
|
|
Open Media Library
|
|
|
|
==================
|
|
|
|
|
|
|
|
Install
|
|
|
|
-------
|
|
|
|
|
2014-08-19 10:07:28 +00:00
|
|
|
To install the latest release on Linux run:
|
|
|
|
|
2019-01-18 10:48:41 +00:00
|
|
|
curl https://code.0x2620.org/0x2620/openmedialibrary.git/HEAD:/install | python3
|
2014-08-19 10:07:28 +00:00
|
|
|
|
|
|
|
on Mac OS X download this:
|
|
|
|
|
2019-01-20 11:16:58 +00:00
|
|
|
https://downloads.openmedialibrary.com/Open%20Media%20Library.dmg
|
2014-05-17 13:32:20 +00:00
|
|
|
|
|
|
|
Networking
|
|
|
|
----------
|
|
|
|
|
2016-01-17 09:18:24 +00:00
|
|
|
Open Media Library uses Tor to connect to other peers.
|
|
|
|
If required Open Media Library will install its own version of Tor Browser.
|
2014-05-17 13:32:20 +00:00
|
|
|
|
|
|
|
Development
|
|
|
|
-----------
|
|
|
|
|
2014-05-17 18:19:13 +00:00
|
|
|
Now checkout the source and prepare for use:
|
|
|
|
|
2014-09-05 15:38:24 +00:00
|
|
|
mkdir openmedialibrary
|
|
|
|
cd openmedialibrary
|
2019-01-18 10:48:41 +00:00
|
|
|
git clone https://code.0x2620.org/0x2620/openmedialibrary.git
|
2014-05-17 13:32:20 +00:00
|
|
|
ln -s openmedialibrary/ctl ctl
|
2017-01-06 16:01:06 +00:00
|
|
|
./ctl init
|
2014-05-17 13:32:20 +00:00
|
|
|
|
|
|
|
# and start it
|
|
|
|
./ctl debug
|
2014-05-17 18:13:58 +00:00
|
|
|
|
2014-05-17 18:19:13 +00:00
|
|
|
To update to latest version:
|
|
|
|
|
|
|
|
./ctl update
|
|
|
|
|
2019-01-18 10:48:41 +00:00
|
|
|
On Linux you need a working python3.7 installation with pillow, python-lxml, pyOpenSSL and pyCrypto and popler-utils:
|
2014-05-26 13:11:50 +00:00
|
|
|
|
2019-01-18 10:48:41 +00:00
|
|
|
apt-get install python3 python3-pil python3-lxml \
|
|
|
|
python3-openssl python3-crypto poppler-utils
|
2014-05-26 13:11:50 +00:00
|
|
|
|
2014-05-17 18:13:58 +00:00
|
|
|
Platform
|
|
|
|
----------
|
|
|
|
|
2014-09-05 15:38:24 +00:00
|
|
|
If you install Open Media Library on a architecture/os that is currently
|
2019-01-18 10:48:41 +00:00
|
|
|
not supported, you need a working python 3.7 installation and the dependencies
|
2014-09-05 15:38:24 +00:00
|
|
|
listed in requirements.txt and requirements-shared.txt:
|
2014-05-17 18:13:58 +00:00
|
|
|
|
2014-09-09 14:34:42 +00:00
|
|
|
pip3 install -r requirements.txt
|
|
|
|
pip3 install -r requirements-shared.txt
|
2014-05-17 18:13:58 +00:00
|
|
|
|