How To Install itk on Fedora 34
Introduction
In this tutorial we learn how to install itk
on Fedora 34.
What is itk
[incr Tk] is Tk extension that provides object-oriented features that are missing from the Tk extension to Tcl. The OO features provided by itk are useful for building megawidgets. itk 4.1.0 4.fc34 x86_64 59 k itk-4.1.0-4.fc34.src.rpm fedora Object oriented extensions to Tk http TCL [incr Tk] is Tk extension that provides object-oriented features that are missing from the Tk extension to Tcl. The OO features provided by itk are useful for building megawidgets.
We can use yum
or dnf
to install itk
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install itk.
Install itk on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install itk
using dnf
by running the following command:
sudo dnf -y install itk
Install itk on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install itk
using yum
by running the following command:
sudo yum -y install itk
How To Uninstall itk on Fedora 34
To uninstall only the itk
package we can use the following command:
sudo dnf remove itk
itk Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/3e
/usr/lib/.build-id/3e/09dbae92932640bf702dcd2c1a0a2c910397c0
/usr/lib64/libitk4.1.0.so
/usr/lib64/tcl8.6/itk4.1.0
/usr/lib64/tcl8.6/itk4.1.0/Archetype.itk
/usr/lib64/tcl8.6/itk4.1.0/Toplevel.itk
/usr/lib64/tcl8.6/itk4.1.0/Widget.itk
/usr/lib64/tcl8.6/itk4.1.0/itk.tcl
/usr/lib64/tcl8.6/itk4.1.0/pkgIndex.tcl
/usr/lib64/tcl8.6/itk4.1.0/tclIndex
/usr/share/licenses/itk
/usr/share/licenses/itk/license.terms
/usr/share/man/mann/Archetype.n.gz
/usr/share/man/mann/Toplevel.n.gz
/usr/share/man/mann/Widget.n.gz
/usr/share/man/mann/itk.n.gz
/usr/share/man/mann/itkvars.n.gz
/usr/share/man/mann/usual.n.gz
/usr/lib/.build-id
/usr/lib/.build-id/66
/usr/lib/.build-id/66/f1dd4eb1804793994350992afd95c85897b26d
/usr/lib/libitk4.1.0.so
/usr/lib/tcl8.6/itk4.1.0
/usr/lib/tcl8.6/itk4.1.0/Archetype.itk
/usr/lib/tcl8.6/itk4.1.0/Toplevel.itk
/usr/lib/tcl8.6/itk4.1.0/Widget.itk
/usr/lib/tcl8.6/itk4.1.0/itk.tcl
/usr/lib/tcl8.6/itk4.1.0/pkgIndex.tcl
/usr/lib/tcl8.6/itk4.1.0/tclIndex
/usr/share/licenses/itk
/usr/share/licenses/itk/license.terms
/usr/share/man/mann/Archetype.n.gz
/usr/share/man/mann/Toplevel.n.gz
/usr/share/man/mann/Widget.n.gz
/usr/share/man/mann/itk.n.gz
/usr/share/man/mann/itkvars.n.gz
/usr/share/man/mann/usual.n.gz
References
Summary
In this tutorial we learn how to install itk
on Fedora 34 using yum and dnf.