How To Install orca on Ubuntu 20.04

In this tutorial we learn how to install orca on Ubuntu 20.04. orca is Scriptable screen reader Scriptable screen reader

Introduction

In this tutorial we learn how to install orca on Ubuntu 20.04.

What is orca

orca is:

A flexible, extensible, and powerful assistive technology that provides end-user access to applications and toolkits that support the AT-SPI (e.g., the GNOME desktop).

Orca defines a set of default behaviors (reactions to application events) and key bindings (reaction to user key presses). These default behaviors and key bindings can be overwritten on a per-application basis. Orca creates a script object for each running application, which merges both the default behaviors and key bindings, and the application specific ones. Orca provides the infrastructure to activate and deactivate scripts, as well as a host of services accessible from within the scripts. Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop

Package: orca Architecture: all Version: 3.36.1-0ubuntu1 Priority: optional Section: gnome Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian Accessibility Team [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 4988 Depends: python3:any, gir1.2-glib-2.0, gir1.2-gtk-3.0 (>= 3.6.2), gir1.2-pango-1.0, gir1.2-wnck-3.0, gir1.2-gstreamer-1.0, gstreamer1.0-plugins-good, python3-brlapi (>= 0.5.1), python3-cairo, python3-gi (>= 3.18), python3-louis (>= 1.6.2), python3-pyatspi (>= 2.26), python3-speechd (>= 0.8), speech-dispatcher (>= 0.8), gsettings-desktop-schemas Recommends: xbrlapi, gstreamer0.10-plugins-base Suggests: python3-gst-1.0 Breaks: gnome-orca (« 3.26.0-4~) Replaces: gnome-orca (« 3.26.0-4~) Filename: pool/main/o/orca/orca_3.36.1-0ubuntu1_all.deb Size: 508272 MD5sum: 93979803f2d54068e8cf25a1ca1864f4 SHA1: a43f0d4a20c26f23ef5e91bad2d97016258dea41 SHA256: 2af6ecef6d0a4207fb3ccbe0943eb71ef7d83c1bd13155883071bd04a62d4285 Homepage: https://wiki.gnome.org/Projects/Orca Description-en: Scriptable screen reader A flexible, extensible, and powerful assistive technology that provides end-user access to applications and toolkits that support the AT-SPI (e.g., the GNOME desktop).

Orca defines a set of default behaviors (reactions to application events) and key bindings (reaction to user key presses). These default behaviors and key bindings can be overwritten on a per-application basis. Orca creates a script object for each running application, which merges both the default behaviors and key bindings, and the application specific ones. Orca provides the infrastructure to activate and deactivate scripts, as well as a host of services accessible from within the scripts. Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop

There are three methods to install orca on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install orca Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install orca using apt-get by running the following command:

sudo apt-get -y install orca

Install orca Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install orca using apt by running the following command:

sudo apt -y install orca

Install orca Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install orca using aptitude by running the following command:

sudo aptitude -y install orca

How To Uninstall orca on Ubuntu 20.04

To uninstall only the orca package we can use the following command:

sudo apt-get remove orca

Uninstall orca And Its Dependencies

To uninstall orca and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove orca

Remove orca Configurations and Data

To remove orca configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge orca

Remove orca configuration, data, and all of its dependencies

We can use the following command to remove orca configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge orca

References

Summary

In this tutorial we learn how to install orca package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.