How to Install and Uninstall libixion.i686 Package on Fedora 38

Last updated: September 30,2024

1. Install "libixion.i686" package

This guide covers the steps necessary to install libixion.i686 on Fedora 38

$ sudo dnf update $ sudo dnf install libixion.i686

2. Uninstall "libixion.i686" package

Please follow the step by step instructions below to uninstall libixion.i686 on Fedora 38:

$ sudo dnf remove libixion.i686 $ sudo dnf autoremove

3. Information about the libixion.i686 package on Fedora 38

Last metadata expiration check: 5:25:13 ago on Sat Mar 16 16:59:57 2024.
Available Packages
Name : libixion
Version : 0.17.0
Release : 9.fc38
Architecture : i686
Size : 296 k
Source : libixion-0.17.0-9.fc38.src.rpm
Repository : fedora
Summary : A general purpose formula parser & interpreter library
URL : https://gitlab.com/ixion/ixion
License : MPL-2.0
Description : Ixion is a general purpose formula parser & interpreter that can calculate
: multiple named targets, or "cells".
:
: The goal of this project is to create a library for calculating the results of
: formula expressions stored in multiple named targets, or “cells”. The cells can
: be referenced from each other, and the library takes care of resolving their
: dependencies automatically upon calculation. The caller can run the calculation
: routine either in a single-threaded mode, or a multi-threaded mode. The library
: also supports re-calculations where the contents of one or more cells have been
: modified since the last calculation, and a partial calculation of only the
: affected cells need to be calculated.
:
: Supported features:
: - Each calculation session is defined in a plain text file, which is parsed and
: interpreted by the Ixion parser.
: - Fully threaded calculation.
: - Name resolution using A1-style references.
: - Support 2D cell references and named expressions.
: - Support range references.
: - Dependency tracking during both full calculation and partial re-calculation.
: - Inline strings.
: - Volatile functions. The framework for volatile functions is implemented. We
: just need to implement more functions.