How To Install libicu on Fedora 34
Introduction
In this tutorial we learn how to install libicu
on Fedora 34.
What is libicu
The International Components for Unicode (ICU) libraries provide robust and full-featured Unicode services on a wide variety of platforms. ICU supports the most current version of the Unicode standard, and they provide support for supplementary Unicode characters (needed for GB 18030 repertoire support). As computing environments become more heterogeneous, software portability becomes more important. ICU lets you produce the same results across all the various platforms you support, without sacrificing performance. It offers great flexibility to extend and customize the supplied services. libicu 67.1 6.fc34 x86_64 9.7 M icu-67.1-6.fc34.src.rpm fedora International Components for Unicode - libraries http MIT and UCD and Public Domain The International Components for Unicode (ICU) libraries provide robust and full-featured Unicode services on a wide variety of platforms. ICU supports the most current version of the Unicode standard, and they provide support for supplementary Unicode characters (needed for GB 18030 repertoire support). As computing environments become more heterogeneous, software portability becomes more important. ICU lets you produce the same results across all the various platforms you support, without sacrificing performance. It offers great flexibility to extend and customize the supplied services.
We can use yum
or dnf
to install libicu
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libicu.
Install libicu 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 libicu
using dnf
by running the following command:
sudo dnf -y install libicu
Install libicu 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 libicu
using yum
by running the following command:
sudo yum -y install libicu
How To Uninstall libicu on Fedora 34
To uninstall only the libicu
package we can use the following command:
sudo dnf remove libicu
libicu Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/05
/usr/lib/.build-id/05/2934ce551d6870d9f488cf56c8ca3446c6d104
/usr/lib/.build-id/1c
/usr/lib/.build-id/1c/eb76ce51c4668eac68e7804038955b6dd7ae28
/usr/lib/.build-id/1e
/usr/lib/.build-id/1e/fad0bce4c42b0f17f0ffe01fd8916535a8ba28
/usr/lib/.build-id/25
/usr/lib/.build-id/25/28507cdee735afb4e9f467c1cd949c1f98e4f7
/usr/lib/.build-id/2d
/usr/lib/.build-id/2d/dda639f91f38b483520849eb799a968a8bb9fd
/usr/lib/.build-id/70
/usr/lib/.build-id/70/81955a598a833211d630cb7308abf980edb273
/usr/lib64/libicudata.so.67
/usr/lib64/libicudata.so.67.1
/usr/lib64/libicui18n.so.67
/usr/lib64/libicui18n.so.67.1
/usr/lib64/libicuio.so.67
/usr/lib64/libicuio.so.67.1
/usr/lib64/libicutest.so.67
/usr/lib64/libicutest.so.67.1
/usr/lib64/libicutu.so.67
/usr/lib64/libicutu.so.67.1
/usr/lib64/libicuuc.so.67
/usr/lib64/libicuuc.so.67.1
/usr/share/doc/libicu
/usr/share/doc/libicu/readme.html
/usr/share/licenses/libicu
/usr/share/licenses/libicu/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/4c
/usr/lib/.build-id/4c/3aa39f28884c786f0dc478a629ea36312258c9
/usr/lib/.build-id/bb
/usr/lib/.build-id/bb/462d44c671fb0c0e7f0a83675ca0a8dd908528
/usr/lib/.build-id/bb/59d7976c21f9bc15c17a7a5e313f3c9b099963
/usr/lib/.build-id/e7
/usr/lib/.build-id/e7/d34b1e29c7a75123b84394782b93ebc9599d39
/usr/lib/.build-id/ee
/usr/lib/.build-id/ee/a8f698ababc77cbcf1fb95b03342a195b54bde
/usr/lib/.build-id/ef/4ef917774c84cab80932bc55ea46cd6f70c9c2
/usr/lib/libicudata.so.67
/usr/lib/libicudata.so.67.1
/usr/lib/libicui18n.so.67
/usr/lib/libicui18n.so.67.1
/usr/lib/libicuio.so.67
/usr/lib/libicuio.so.67.1
/usr/lib/libicutest.so.67
/usr/lib/libicutest.so.67.1
/usr/lib/libicutu.so.67
/usr/lib/libicutu.so.67.1
/usr/lib/libicuuc.so.67
/usr/lib/libicuuc.so.67.1
/usr/share/doc/libicu
/usr/share/doc/libicu/readme.html
/usr/share/licenses/libicu
/usr/share/licenses/libicu/LICENSE
References
- [libicu website](http://site.icu-project.org/ http://site.icu-project.org/)
Summary
In this tutorial we learn how to install libicu
on Fedora 34 using yum and dnf.