7
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-06-02 14:20:47 +00:00
tutor/docs/install.rst

116 lines
4.4 KiB
ReStructuredText
Raw Normal View History

.. _install:
Install Tutor
=============
2020-03-16 21:14:36 +00:00
.. _requirements:
Requirements
------------
2020-03-16 21:14:36 +00:00
* Supported OS: Tutor runs on any 64-bit, UNIX-based system. It was also reported to work on Windows.
* Required software:
2020-03-16 21:14:36 +00:00
- `Docker <https://docs.docker.com/engine/installation/>`__: v18.06.0+
- `Docker Compose <https://docs.docker.com/compose/install/>`__: v1.22.0+
2020-01-10 18:03:53 +00:00
.. warning::
Do not attempt to simply run ``apt-get install docker docker-compose`` on older Ubuntu platforms, such as 16.04 (Xenial), as you will get older versions of these utilities.
2019-03-27 14:55:09 +00:00
2020-03-16 21:14:36 +00:00
* Ports 80 and 443 should be open. If other web services run on these ports, check the section on :ref:`how to setup a web proxy <web_proxy>`.
* Hardware:
2020-03-16 21:14:36 +00:00
- Minimum configuration: 4 Gb RAM, 2 CPU, 8 Gb disk space
- Recommended configuration: 8 Gb RAM, 4 CPU, 25 Gb disk space
2019-02-13 22:44:42 +00:00
.. note::
2020-03-16 21:14:36 +00:00
On Mac OS, by default, containers are allocated 2 GB of RAM, which is not enough. You should follow `these instructions from the official Docker documentation <https://docs.docker.com/docker-for-mac/#advanced>`__ to allocate at least 4-5 Gb to the Docker daemon. If the deployment fails because of insufficient memory during database migrations, check the :ref:`relevant section in the troubleshooting guide <migrations_killed>`.
2020-03-16 21:14:36 +00:00
.. _install_binary:
2020-03-16 21:14:36 +00:00
Direct binary download
----------------------
The latest binaries can be downloaded from https://github.com/overhangio/tutor/releases. From the command line:
2019-02-18 08:53:54 +00:00
.. include:: cli_download.rst
2020-02-25 16:03:40 +00:00
This is the simplest and recommended installation method for most people. Note however that you will not be able to use custom plugins with this pre-compiled binary. The only plugins you can use with this approach are those that are already bundled with the binary: see the :ref:`existing plugins <existing_plugins>`.
2020-03-16 21:14:36 +00:00
.. _install_source:
From source
-----------
If you would like to inspect the Tutor source code, you are most welcome to install Tutor from `Pypi <https://pypi.org/project/tutor-openedx/>`_ or directly from `the Github repository <https://github.com/overhangio/tutor>`_. You will need python >= 3.6 and the libyaml development headers. On Ubuntu, these requirements can be installed by running::
2019-03-27 14:55:09 +00:00
sudo apt install python3 libyaml-dev
Installing from pypi::
pip install tutor-openedx
Installing from a local clone of the repository::
git clone https://github.com/overhangio/tutor
cd tutor
pip install -e .
2019-10-07 12:26:17 +00:00
.. _cloud_install:
2019-10-07 12:26:17 +00:00
2020-03-16 21:14:36 +00:00
Zero-click AWS installation
---------------------------
2020-03-16 21:14:36 +00:00
Tutor can be launched on Amazon Web Services very quickly with the `official Tutor AMI <https://aws.amazon.com/marketplace/pp/B07PV3TB8X>`__. Shell access is not required, as all configuration will happen through the Tutor web user interface. For detailed installation instructions, we recommend watching the following video:
2020-02-25 16:03:40 +00:00
.. youtube:: xtXP52qGphA
2019-10-07 12:26:17 +00:00
.. _upgrade:
Upgrading
---------
2019-10-07 12:26:17 +00:00
2020-02-25 16:03:40 +00:00
With Tutor, it is very easy to upgrade to a more recent Open edX or Tutor release. Just install the latest ``tutor`` version (using either methods above) and run the ``quickstart`` command again. If you have :ref:`customised <configuration_customisation>` your docker images, you will have to re-build them prior to running ``quickstart``.
2020-01-10 18:03:53 +00:00
.. _autocomplete:
2019-05-03 05:55:21 +00:00
Autocomplete
------------
Tutor is built on top of `Click <https://click.palletsprojects.com>`_, which is a great library for building command line interface (CLI) tools. As such, Tutor benefits from all Click features, including `auto-completion <https://click.palletsprojects.com/en/7.x/bashcomplete/>`_. After installing Tutor, auto-completion can be enabled by running::
_TUTOR_COMPLETE=source tutor >> ~/.bashrc
If you are running zsh, run instead::
_TUTOR_COMPLETE=source_zsh tutor >> ~/.zshrc
After opening a new shell, you can test auto-completion by typing::
tutor <tab><tab>
.. include:: podman.rst
Uninstallation
--------------
It is fairly easy to completely uninstall Tutor and to delete the any Open edX platforms that is running locally.
First of all, stop any locally-running platform::
tutor local stop
tutor dev stop
Then, delete all data associated to your Open edX platform::
# WARNING: this step is irreversible
sudo rm -rf "$(tutor config printroot)"
Finally, uninstall Tutor itself::
# If you installed tutor from source
pip uninstall tutor-openedx
# If you downloaded the tutor binary
sudo rm /usr/local/bin/tutor