mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-04 08:13:38 +00:00
- Merge actions/pagekite_util.py into plinth/modules/pagekite/util.py. - Rename plinth/modules/pagekite/util.py to utils.py. - Add python-augeus as dependency. - Move actions/util.py to plinth/action_utils.py and update services that use it. - Rename _run() method to run() as it is being used publicly. - Import the utils in a more conventional manner. - Move all python2 bits to python3.
27 lines
703 B
Plaintext
27 lines
703 B
Plaintext
# Installing Plinth
|
|
|
|
1. Install the dependencies:
|
|
|
|
On a Debian based system, run:
|
|
|
|
$ sudo apt-get install libjs-jquery libjs-modernizr libjs-bootstrap \
|
|
make pandoc python3 python3-augeas python3-bootstrapform \
|
|
python3-cherrypy3 python3-coverage python3-django \
|
|
python3-django-stronghold python3-gi python3-setuptools python3-yaml \
|
|
gir1.2-glib-2.0 gir1.2-networkmanager-1.0 gir1.2-packagekitglib-1.0
|
|
|
|
2. Install Plinth:
|
|
|
|
Unzip the source into a directory. Change to the directory containing the
|
|
program and run:
|
|
|
|
$ sudo python3 setup.py install
|
|
|
|
3. Run Plinth:
|
|
|
|
$ sudo plinth
|
|
|
|
4. Access Plinth UI:
|
|
|
|
Plinth UI should be accessible at http://localhost:8000
|