kwdevtheme Installation

Package Installation

The easiest way to install kwdevtheme is to use the official Python package from PyPI:

$ python3 -m pip install kwdevtheme

Once the package is installed, you can start using your favorite kwdevtheme theme right away:

# conf.py
html_theme = "kwdevtheme-blue"

Source Installation

To install kwdevtheme from source, first clone the official Git repo:

# Assuming you want to install kwdevtheme at "~/my_sphinx_themes"...
$ cd ~/my_sphinx_themes
$ git clone https://github.com/kawright/kwdevtheme.git

Once kwdevtheme is downloaded, use the html_theme_path configuration option to tell Sphinx where to find your new themes:

# conf.py
html_theme = "kwdevtheme-blue"
html_theme_path = [
   "~/my_sphinx_themes/kwdevtheme/src"
]