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