How To Install libfinance-streamer-perl on Debian 12
Introduction
In this tutorial we learn how to install libfinance-streamer-perl
on Debian 12.
What is libfinance-streamer-perl
libfinance-streamer-perl is:
Finance::Streamer provides an interface that can be used to access data provided by the Datek Streamer data feed.
It works with the new Streamer (version 3) as opposed to the older (version 2).
There are three methods to install libfinance-streamer-perl
on Debian 12. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libfinance-streamer-perl Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libfinance-streamer-perl
using apt-get
by running the following command:
sudo apt-get -y install libfinance-streamer-perl
Install libfinance-streamer-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libfinance-streamer-perl
using apt
by running the following command:
sudo apt -y install libfinance-streamer-perl
Install libfinance-streamer-perl 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 Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libfinance-streamer-perl
using aptitude
by running the following command:
sudo aptitude -y install libfinance-streamer-perl
How To Uninstall libfinance-streamer-perl on Debian 12
To uninstall only the libfinance-streamer-perl
package we can use the following command:
sudo apt-get remove libfinance-streamer-perl
Uninstall libfinance-streamer-perl And Its Dependencies
To uninstall libfinance-streamer-perl
and its dependencies that are no longer needed by Debian 12, we can use the command below:
sudo apt-get -y autoremove libfinance-streamer-perl
Remove libfinance-streamer-perl Configurations and Data
To remove libfinance-streamer-perl
configuration and data from Debian 12 we can use the following command:
sudo apt-get -y purge libfinance-streamer-perl
Remove libfinance-streamer-perl configuration, data, and all of its dependencies
We can use the following command to remove libfinance-streamer-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libfinance-streamer-perl
Dependencies
libfinance-streamer-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libfinance-streamer-perl
package on Debian 12 using different package management tools: apt
, apt-get
and aptitude
.