Understanding GUI
Supported Python versions
Taipy requires Python 3.9 or newer.
Welcome to the Taipy Tutorial! Learn to build interactive web applications effortlessly.
This tutorial focuses on creating an application that analyses the sentiment behind words and sentences. While creating this application, you'll learn all the Taipy basic principles.
Why Taipy?¶
- Speed: Quickly develop robust applications.
- Simplicity: Easy management of variables and events.
- Visualization: Intuitive and clear visual elements.
Each step in this Tutorial builds on the previous one. By the end, you'll be ready to create your own Taipy applications.
Getting Started¶
This tutorial is for Python scripts (.py). If you prefer Jupyter Notebooks, read this documentation and follow the tutorial accordingly.
Installation¶
Ensure you have Python 3.9 or newer, then install Taipy:
pip install taipy
For the NLP feature (Python 3.9 to 3.10), install:
pip install torch transformers scipy
Info
Use pip install taipy
for the latest stable version. Need help with pip? Check out
the installation guide.
Taipy Studio¶
Taipy Studio is a VS Code extension for auto-completing Taipy visual elements. It makes creating applications faster and easier.
So, without further delay, let's begin to code!