How To Install python3-routes on Ubuntu
Posted on April 1, 2023  (Last modified on May 20, 2023 )
3 minutes • 444 words
Introduction
In this tutorial we learn how to install python3-routes
on Ubuntu.
What is python3-routes
python3-routes is:
Routes is a Python 3 re-implementation of the Rails routes system for mapping URLs to Controllers/Actions and generating URLs. Routes makes it easy to create pretty and concise URLs that are RESTful with little effort.
Speedy and dynamic URL generation means you get a URL with minimal cruft (no big dangling query args). Shortcut features like Named Routes cut down on repetitive typing.
Current features:
- Named Routes
- Sophisticated Route lookup and URL generation
- Wildcard path’s before and after static parts
- Groupings syntax to allow flexible URLs to accommodate almost any need
- Sub-domain support built-in
- Conditional matching based on domain, cookies, HTTP method (RESTful), and more
- Easily extensible utilizing custom condition functions and route generation functions
- Extensive unit tests
There are three methods to install python3-routes
on Ubuntu. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install python3-routes Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install python3-routes
using apt-get
by running the following command:
sudo apt-get -y install python3-routes
Install python3-routes Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install python3-routes
using apt
by running the following command:
sudo apt -y install python3-routes
Install python3-routes 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 python3-routes
using aptitude
by running the following command:
sudo aptitude -y install python3-routes
How To Uninstall python3-routes on Ubuntu
To uninstall only the python3-routes
package we can use the following command:
sudo apt-get remove python3-routes
Uninstall python3-routes And Its Dependencies
To uninstall python3-routes
and its dependencies that are no longer needed by Ubuntu, we can use the command below:
sudo apt-get -y autoremove python3-routes
Remove python3-routes Configurations and Data
To remove python3-routes
configuration and data from Ubuntu we can use the following command:
sudo apt-get -y purge python3-routes
Remove python3-routes configuration, data, and all of its dependencies
We can use the following command to remove python3-routes
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge python3-routes
Dependencies
python3-routes have the following dependencies:
References
Summary
In this tutorial we learn how to install python3-routes
package on Ubuntu using different package management tools: apt, apt-get and aptitude.