How To Install python3-TurboGears2 on AlmaLinux 8

In this tutorial we learn how to install python3-TurboGears2 in AlmaLinux 8. python3-TurboGears2 is Next generation front-to-back web development megaframework

Introduction

In this tutorial we learn how to install python3-TurboGears2 on AlmaLinux 8.

What is python3-TurboGears2

TurboGears brings together a best of breed python tools to create a flexible, full featured, and easy to use web framework. TurboGears 2 provides and integrated and well tested set of tools for everything you need to build dynamic, database driven applications. It provides a full range of tools for front end javascript develeopment, back database development and everything in between * dynamic javascript powered widgets ToscaWidgets * automatic JSON generation from your controllers * powerful, designer friendly XHTML basted templating (Genshi) * object or route based URL dispatching * powerful Object Relational Mappers (SQLAlchemy)

We can use yum or dnf to install python3-TurboGears2 on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install python3-TurboGears2.

Install python3-TurboGears2 on AlmaLinux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install python3-TurboGears2 using dnf by running the following command:

sudo dnf -y install python3-TurboGears2

Install python3-TurboGears2 on AlmaLinux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install python3-TurboGears2 using yum by running the following command:

sudo yum -y install python3-TurboGears2

How To Uninstall python3-TurboGears2 on AlmaLinux 8

To uninstall only the python3-TurboGears2 package we can use the following command:

sudo dnf remove python3-TurboGears2

References

Summary

In this tutorial we learn how to install python3-TurboGears2 on AlmaLinux 8 using yum and dnf.