:To launch kitty from any terminal or your desktop environment, you should link the binary to your PATH:

If you prefer simplicity and don't mind a slightly older version, you can install it directly from Ubuntu’s "Universe" repository. : sudo apt update Use code with caution. Install kitty : sudo apt install kitty Use code with caution. Key Features of Kitty Install kitty - Kovid Goyal

cp ~/.local/kitty.app/share/applications/kitty.desktop ~/.local/share/applications/ Use code with caution.

There are two primary ways to get kitty on your Ubuntu system: using the official binary installer (recommended for the latest version) or using the default Ubuntu repositories.

This method is preferred because Ubuntu’s repositories often lag behind with older versions. The installer script from the Official kitty website downloads the pre-built binaries to ~/.local/kitty.app/ . :Open your current terminal and run:

Downloading and installing on Ubuntu provides power users with a fast, GPU-accelerated terminal emulator that supports modern features like ligatures, tiling, and images . Unlike standard terminal emulators, kitty offloads rendering to the GPU, ensuring low latency and smooth scrolling even during heavy workloads. How to Install Kitty on Ubuntu

# Create a symbolic link to the kitty binary ln -sf ~/.local/kitty.app/bin/kitty ~/.local/bin/ # Create a symbolic link for the kitten binary (for extensions) ln -sf ~/.local/kitty.app/bin/kitten ~/.local/bin/ Use code with caution.