How to Install and Uninstall perl-Lingua-Stem Package on openSUSE Leap

Last updated: May 20,2024

1. Install "perl-Lingua-Stem" package

This guide covers the steps necessary to install perl-Lingua-Stem on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install perl-Lingua-Stem

2. Uninstall "perl-Lingua-Stem" package

This is a short guide on how to uninstall perl-Lingua-Stem on openSUSE Leap:

$ sudo zypper remove perl-Lingua-Stem

3. Information about the perl-Lingua-Stem package on openSUSE Leap

Information for package perl-Lingua-Stem:
-----------------------------------------
Repository : Main Repository
Name : perl-Lingua-Stem
Version : 2.31-bp155.2.10
Arch : noarch
Vendor : openSUSE
Installed Size : 3.5 MiB
Installed : No
Status : not installed
Source package : perl-Lingua-Stem-2.31-bp155.2.10.src
Upstream URL : https://metacpan.org/release/Lingua-Stem
Summary : Stemming of words
Description :
This routine applies stemming algorithms to its parameters, returning the
stemmed words as appropriate to the selected locale.
You can import some or all of the class methods.
use Lingua::Stem qw (stem clear_stem_cache stem_caching add_exceptions
delete_exceptions get_exceptions set_locale get_locale :all :locale
:exceptions :stem :caching);
:all - imports stem add_exceptions delete_exceptions get_exceptions
set_locale get_locale
:stem - imports stem
:caching - imports stem_caching clear_stem_cache
:locale - imports set_locale get_locale
:exceptions - imports add_exceptions delete_exceptions get_exceptions
Currently supported locales are:
DA - Danish
DE - German
EN - English (also EN-US and EN-UK)
FR - French
GL - Galician
IT - Italian
NO - Norwegian
PT - Portuguese
RU - Russian (also RU-RU and RU-RU.KOI8-R)
SV - Swedish
If you have the memory and lots of stemming to do, I *strongly* suggest
using cache level 2 and processing lists in 'big chunks' (long lists) for
best performance.