Advanced installation options

Note

Every time you install or update kalite, you should (re)run kalite manage setup to setup the database and download assessment items (video descriptions, exercises etc.).

Debian/Ubuntu: Subscribe to updates through a PPA

We maintain a PPA on Launchpad and if you are connected to the internet, this will also give you automatic updates:

sudo apt-get install software-properties-common python-software-properties
sudo add-apt-repository ppa:learningequality/ka-lite
sudo apt-get update
sudo apt-get install ka-lite

User interface for Debian/Ubuntu

Make sure you have the PPA added, then run:

sudo apt-get install ka-lite-gtk

Development

A guide recommending how to install KA Lite for development is available in Setting up your development environment.

Generic installation (pip install)

Installing through pip or with setup.py

For command line users with access to pip, you can install KA Lite from an online source like this:

$> pip install ka-lite

Static version

If you need to run KA Lite with static dependencies bundled and isolated from the rest of your environment, you can run:

$> pip install ka-lite-static

Portable tarballs / zip files with setup.py

Adequate to the online source, you can fetch a zip/tarball directly from PyPi <https://pypi.python.org/pypi/ka-lite-static>. Do this for the sake of carrying KA Lite on an offline media for use on systems that are not capable of installing the .exe/.dmg/.deb formats.

A .tar.gz or .zip is unpacked and from command line inside the unpacked directory, run:

$> sudo python setup.py install.

Beware that the PyPi sources do not contain assessment items, you need to download khan_assessment.zip manually (~350 MB).

Specific system setups

Raspberry Pi Wi-Fi

Note

Two Wi-Fi USB modules have been tested with KA Lite on the Raspberry Pi

  • Raspberry Pi WiPi adaptor
  • Edimax EW-7811Un

In our tests, we found that the WiPi adaptor supported a higher number tablet connections.

Note

The Raspberry Pi may crash if the USB adaptor is inserted or removed while the computer is switched on.

  • Make sure to shutdown and remove the power from the Raspberry Pi.
  • Afterwards, insert the wireless USB adaptor.
  • Lastly, switch the Raspberry Pi on.
  1. Install the .deb package, see Raspberry Pi.

  2. Get the network configuration scripts.
    • cd /opt
    • sudo git clone https://github.com/learningequality/ka-lite-pi-scripts.git
  3. Install and configure the access point:

    cd /opt/ka-lite-pi-scripts
    sudo ./configure.sh
    

    Note

    If using the Edimax EW-7811UN, ignore the “hostapdSegmentation fault” error.

  4. Install the USB adaptor software.
    • If using the WiPi, run this command::

      cd /opt/ka-lite-pi-scripts sudo ./use_wipi.sh

    • If using the Edimax EW-7811Un, run this command:
      • cd /opt/ka-lite-pi-scripts
      • sudo ./use_edimax.sh
  5. Complete the access point configuration
    • sudo python ./configure_network_interfaces.py
    • sudo insserv hostapd
  6. Finally
    • sudo reboot
    • A wireless network named “kalite” should be available.
    • Connect to this network
    • If the KA Lite server is started, browse to 1.1.1.1

Nginx / Apache setup

This section is written for the Django-knowledgable crowd.

KA Lite includes a web server implemented in pure Python for serving the website, capable of handling hundreds of simultaneous users while using very little memory. So you don’t have to run Apache or Nginx for efficiency.

Apache configuration, using mod_wsgi, example would work for an Ubuntu .deb installation:

<VirtualHost *:80>
    ServerName kalite.com
    DocumentRoot /var/www/html/

    Alias /static /var/www/.kalite/static
    Alias /media /var/www/.kalite/media

    WSGIScriptAlias / /usr/lib/python2.7/dist-packages/kalite/project/wsgi.py

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    ErrorLog ${APACHE_LOG_DIR}/kalite-error.log
    CustomLog ${APACHE_LOG_DIR}/kalite-access.log combined
</VirtualHost>

If you are using uwsgi+Nginx, this is the critical part of your uwsgi configuration, provided that you have installed kalite from PyPi or .deb:

module = kalite.project.wsgi

Remember that kalite runs in user space and creates data files in that user’s home directory. A normal Debian/Ubuntu system has a www-data user for Apache which is the default user for mod_wsgi and will create database files, static files etc. for kalite in /var/www/.kalite/. If you run it as another user, it may be located somewhere else.

Note

Log in as the Django application server’s user, e.g. www-data and initialize the kalite static files and database before anything you can run kalite with uwsgi / mod_wsgi !

Example of setting up kalite for the www-data user:

$> sudo su -s /bin/bash www-data
$> kalite manage setup
$> exit