Skip to content

Install Katana

Darth-Ness edited this page Nov 5, 2021 · 1 revision

Yes, there are install instructions in the readme, but this is a more detailed guide.

Step 1: Determine which version you want.

Katana has two versions at the moment. The master branch is the stable edition. It is the one that is used by default. However, the dev branch as newer features, but is not as stable as the master branch.

Step 2: Install dependencies

Katana as a couple of packages that are required to render. The two dependencies are Tkinter, and Pillow. It depends on what OS you are using to install these. So I'm going to post the Debian and Arch Linux versions (Should work for forks too). Accordign to the Pillow website you won't need to install Pillow.

Debian Install: sudo apt-get install python-tk

Arch Install: sudo pacman -S tk

Step 3: Clone branch

If you are on Linux then run this

 git clone https://github.com/Darth-Ness/Katana-HTML-Renderer.git
 cd Katana-HTML-Renderer
 python3 importer.py

That will get you the master branch. If you want the dev branch, then run

 git clone https://github.com/Darth-Ness/Katana-HTML-Renderer.git -b dev
 cd Katana-HTML-Renderer
 python3 importer.py

Then you should have it! If this didn't work for you, please post an issue.

Clone this wiki locally