> For the complete documentation index, see [llms.txt](https://docs.kivy.fun/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kivy.fun/getting-started/intro.md).

# Introduction

Start Developing Kivy Apps Right Away!

Creating Kivy apps is fun and rewarding. This guide should be the perfect starting point to get you on the right track for app development. You will require a basic knowledge of Python to follow this introduction.

If you need more background on the Python language, you might be interested in these tutorials:

* [The Official Python Tutorial](http://docs.python.org/tutorial/)
* [Learn Python in 10 minutes](https://www.stavros.io/tutorials/python/)
* [Learn Python the hard way](http://learnpythonthehardway.org/)

Using Kivy on your computer, you can create apps that run on:

* Desktop computers: OS X, Linux, Windows.
* iOS devices: iPad, iPhone.
* Android devices: tablets, phones.
* Any other touch-enabled professional/homebrew devices supporting TUIO (Tangible User Interface Objects).

Kivy empowers you with the freedom to write your code once and have it run as-is on different platforms.

Follow this guide to get the tools you need, understand the major concepts and learn best practices. As this is an introduction, pointers to more information will be provided at the end of each section.

As you proceed through the guide, you will, using Kivy:

* **Learn**: The basics of programming with the Kivy language.
* **Explore**: The Kivy framework.
* **Create**: A simple cross-platform app.
* **Package**: For your choice of platform.

Finally, you will learn how to **Deploy** on the device of your choice.

Each section of the guide introduces a new topic, trying to give you enough information to get started and links to related articles for more in-depth explanations. When you are done with this guide, you'll be able to develop Kivy apps and you will know where to look for information for the more challenging stuff your innovative applications will require.

Enough introductions, let's get down to business.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.kivy.fun/getting-started/intro.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
