How To Install blitz on Fedora 34

blitz is C++ class library for matrix scientific computing C++ class library for matrix scientific computing

Introduction

In this tutorial we learn how to install blitz on Fedora 34.

What is blitz

Blitz++ is a C++ class library for scientific computing which provides performance on par with Fortran 77/90. It uses template techniques to achieve high performance. Blitz++ provides dense arrays and vectors, random number generators, and small vectors blitz 1.0.2 7.fc34 x86_64 33 k blitz-1.0.2-7.fc34.src.rpm fedora C++ class library for matrix scientific computing https LGPLv3+ or BSD or Artistic 2.0 Blitz++ is a C++ class library for scientific computing which provides performance on par with Fortran 77/90. It uses template techniques to achieve high performance. Blitz++ provides dense arrays and vectors, random number generators, and small vectors

We can use yum or dnf to install blitz on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install blitz.

Install blitz 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 blitz using dnf by running the following command:

sudo dnf -y install blitz

Install blitz 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 blitz using yum by running the following command:

sudo yum -y install blitz

How To Uninstall blitz on Fedora 34

To uninstall only the blitz package we can use the following command:

sudo dnf remove blitz

blitz Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/7d
/usr/lib/.build-id/7d/bf1b8708aa0f90cd612eb17fae0a24ea0c060f
/usr/lib/libblitz.so.0
/usr/lib/libblitz.so.1.0.2
/usr/share/doc/blitz
/usr/share/doc/blitz/AUTHORS
/usr/share/doc/blitz/README.fedora
/usr/share/doc/blitz/README.md
/usr/share/licenses/blitz
/usr/share/licenses/blitz/COPYING
/usr/share/licenses/blitz/COPYING.LESSER
/usr/share/licenses/blitz/LEGAL
/usr/share/licenses/blitz/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/fb
/usr/lib/.build-id/fb/71d4f8e8c93d3bdafdd09720c55a91b5dbc04e
/usr/lib64/libblitz.so.0
/usr/lib64/libblitz.so.1.0.2
/usr/share/doc/blitz
/usr/share/doc/blitz/AUTHORS
/usr/share/doc/blitz/README.fedora
/usr/share/doc/blitz/README.md
/usr/share/licenses/blitz
/usr/share/licenses/blitz/COPYING
/usr/share/licenses/blitz/COPYING.LESSER
/usr/share/licenses/blitz/LEGAL
/usr/share/licenses/blitz/LICENSE

References

Summary

In this tutorial we learn how to install blitz on Fedora 34 using yum and dnf.