.. _getting_started: Getting Started =============== Installing the library:: pip install k9 or pipenv install k9 You should now be able to run k9 commands in your terminal.:: k9 create project or pipenv shell k9 create project Here is a quick test, **test.py**:: from k9.core import list_namespaces print(list_namespaces()) Run it by:: python3 test.py