Skip to content

Textualize/TODO-tutorial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

da98ce8 · Jul 17, 2023

History

12 Commits
Jul 10, 2023
Jul 13, 2023
Jul 13, 2023
Jul 13, 2023
Jul 13, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 10, 2023
Jul 17, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023
Jul 16, 2023

Repository files navigation

Textual tutorial

This repository holds the material for the EuroPython 2023 Textual tutorial, hosted by Rodrigo Girão Serrão.

If you have any questions before or after the tutorial, feel free to write to [email protected].

To prepare for the tutorial, make sure you install Textual in your preferred way. Here are the commands to install Textual in a virtual environment:

~:$ python -m venv .venv  # Create & activate virtual environment.
~:$ . .venv/bin/activate
~:$ python -m pip install textual
~:$ python -m textual  # Open the Textual demo app.
~:$ python -m pip install textual-dev  # Utilities we'll use later in the tutorial
~:$ textual --version

The command python -m textual ensures Textual was correctly installed and the command textual --version ensures that textual-dev was correctly installed.

Useful links