Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add hints about versions and install in Ubuntu. #30

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ If you use a Debian-based GNU/Linux distribution (like Ubuntu), you can install

$ sudo apt-get install build-essential liblilv-dev phantomjs python3-pil python3-pystache python3-tornado python3-setuptools python3-pyinotify

Hint: on Ubuntu 21.10, phantomJS is not available, and the tornado version is
not compatible with mod-sdk, so these need to be installed separately:

pip3 install --user tornado==4.3 phantomjs

After you have all dependencies installed, build it with::

$ python3 setup.py build
Expand All @@ -33,6 +38,12 @@ If you don't want to install, simply run::

$ ./development_server.py

If you need the application run on a different port than 9000, you can edit
modsk/settings.py and change the value of PORT in there.
Remember that for communication with the mod-ui you will need it's default port
8888 free.


To install mod-sdk, run::

$ [sudo] python3 setup.py install
Expand Down