{% extends "main.html" %} {% block title %}Download{% endblock %} {% macro begin_collapsible(id, label) %}
{% endmacro %} {% macro end_collapsible() %}
{% endmacro %} {% macro distro_id(distro, stable) %}{{ ("stable_" if stable else "dev_") + distro|replace("/","_")|replace(" ","_") }}{% endmacro %} {% macro deb_help(distro, stable) %}
  • {{ begin_collapsible(distro_id(distro, stable), distro) }}
    sudo add-apt-repository "deb https://download.opensuse.org/repositories/home:/lachs0r:/taisei{% if stable %}:/stable{% endif %}/{{ distro|replace(" ", "_") }}/ ./"
    wget -q -O- https://download.opensuse.org/repositories/home:/lachs0r:/taisei{% if stable %}:/stable{% endif %}/{{ distro|replace(" ", "_") }}/Release.key | sudo apt-key add -
    sudo apt-get update
    sudo apt-get install taisei
    {{ end_collapsible() }}
  • {% endmacro %} {% macro suse_help(distro, stable) %}
  • {{ begin_collapsible(distro_id(distro, stable), distro) }}
    zypper ar -fr https://download.opensuse.org/repositories/home:/lachs0r:/taisei{% if stable %}:/stable{% endif %}/{{ distro|replace(" ", "_") }}/home:lachs0r:taisei{% if stable %}:stable{% endif %}.repo
    zypper in taisei
    {{ end_collapsible() }}
  • {% endmacro %} {% macro fedora_help(distro, stable) %}
  • {{ begin_collapsible(distro_id(distro, stable), distro) }}
    dnf config-manager --add-repo https://download.opensuse.org/repositories/home:/lachs0r:/taisei{% if stable %}:/stable{% endif %}/{{ distro|replace(" ", "_") }}/home:lachs0r:taisei{% if stable %}:stable{% endif %}.repo
    dnf install taisei
    {{ end_collapsible() }}
  • {% endmacro %} {% set dl_prefix = 'https://github.com/taisei-project/taisei/releases/download/' %} {% macro artifact_url(version, suffix) %}{{ dl_prefix }}v{{version}}/Taisei-{{version}}-{{suffix}}{% endmacro %} {% macro artifact_link(label, version, suffix) %} {{ label }} {% endmacro %} {% macro source_url(version) %}{{ dl_prefix }}v{{version}}/taisei-{{version}}.tar.xz{% endmacro %} {% macro release_url_prefix() %}https://github.com/taisei-project/taisei/releases/download/v{{ taisei_release_version }}{% endmacro %} {% block content %}

    Download

    We provide pre-built packages for Windows, macOS, and Linux. You can also download the source code and build it yourself.


    Windows

    v{{taisei_release_version}}


    Linux

    If available, it's generally recommended to install Taisei from your distribution's package repositories.

    You can check which distributions package Taisei here.

    Static build

    This is a relocatable, (mostly) statically-linked build that should work on most glibc-based Linux distributions without installation.

    Flatpack

    A package is available on Flathub.

    flatpak install flathub org.taisei_project.Taisei
    flatpak run org.taisei_project.Taisei


    macOS

    v{{taisei_release_version}}


    Switch Homebrew

    This is a semi-official port for the Switch console. You can also get it on the Homebrew Appstore.
    Use at your own risk. Contact @p-sam for support.


    Source Code

    Building Taisei is easy (unless you are on Windows). Download the source code and follow the instructions in README.md. Feel free to contact us if you have problems.

    Although Taisei supports only Linux, macOS, and Windows officially, it's also known to work on BSD systems and Haiku. Generally, it should build and run on any POSIX-compliant OS, given that all the dependencies also work there.

    Release tarballs

    Latest git snapshot

    git clone --recurse-submodules -j8 https://github.com/taisei-project/taisei

    Miscellaneous

    If you're looking for PGP signatures, SHA256 sums, or older releases, visit the releases page on GitHub.

    The PGP signatures (since v1.3.2) can be verified using this public key. You can also import it from a keyserver like so:

    gpg --keyserver keys.openpgp.org --recv-keys A268CBC3039251146DF03C5F5F2EE4A69653CA07

    If you find any mistakes, please contact us.

    {% endblock %}