How to Install and Uninstall python3-pyfim.x86_64 Package on Fedora 34

Last updated: June 29,2024

1. Install "python3-pyfim.x86_64" package

This is a short guide on how to install python3-pyfim.x86_64 on Fedora 34

$ sudo dnf update $ sudo dnf install python3-pyfim.x86_64

2. Uninstall "python3-pyfim.x86_64" package

In this section, we are going to explain the necessary steps to uninstall python3-pyfim.x86_64 on Fedora 34:

$ sudo dnf remove python3-pyfim.x86_64 $ sudo dnf autoremove

3. Information about the python3-pyfim.x86_64 package on Fedora 34

Last metadata expiration check: 1:04:31 ago on Tue Sep 6 14:10:38 2022.
Available Packages
Name : python3-pyfim
Version : 6.28
Release : 7.fc34
Architecture : x86_64
Size : 183 k
Source : python-pyfim-6.28-7.fc34.src.rpm
Repository : fedora
Summary : Frequent Item Set Mining and Association Rule Induction
URL : http://www.borgelt.net/pyfim.html
License : MIT
Description :
: PyFIM is an extension module that makes several frequent item set mining
: implementations available as functions in Python 2.7.x & 3.5.x. Currently
: apriori, eclat, fpgrowth, sam, relim, carpenter, ista, accretion and apriacc
: are available as functions, although the interfaces do not offer all of the
: options of the command line program. (Note that lcm is available as an
: algorithm mode of eclat.) There is also a "generic" function fim, which is
: essentially the same function as fpgrowth, only with a simplified interface
: (fewer options). Finally, there is a function arules for generating association
: rules (simplified interface compared to apriori, eclat and fpgrowth, which can
: also be used to generate association rules.
:
: How to use the functions can be seen in the example scripts testfim.py and
: testacc.py in the source package (directory pyfim/ex). From a Python script or
: command prompt interface, call help(fim), help(apriori) (or help(fim.apriori)),
: help(eclat) (or help(fim.eclat)) etc. or print, for example, apriori.__doc__,
: eclat.__doc__ etc. for a description of the functions and their arguments.
:
: This extension module was originally developed for Python 2.7. The shared
: objects made available above were compiled particularly for Python 2.7.11 and
: Python 3.5.1 on Ubuntu 16.04 LTS and the dynamic modules made available above
: were compiled for Python 2.7.10 and Python 3.5.1 on Windows 10.