How To Install gsl on Fedora 34
Introduction
In this tutorial we learn how to install gsl
on Fedora 34.
What is gsl
The GNU Scientific Library (GSL) is a collection of routines for numerical analysis, written in C. gsl 2.6 4.fc34 x86_64 1.1 M gsl-2.6-4.fc34.src.rpm fedora The GNU Scientific Library for numerical analysis http GPLv3+ The GNU Scientific Library (GSL) is a collection of routines for numerical analysis, written in C.
We can use yum
or dnf
to install gsl
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install gsl.
Install gsl 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 gsl
using dnf
by running the following command:
sudo dnf -y install gsl
Install gsl 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 gsl
using yum
by running the following command:
sudo yum -y install gsl
How To Uninstall gsl on Fedora 34
To uninstall only the gsl
package we can use the following command:
sudo dnf remove gsl
gsl Package Contents on Fedora 34
/usr/bin/gsl-histogram
/usr/bin/gsl-randist
/usr/lib/.build-id
/usr/lib/.build-id/22
/usr/lib/.build-id/22/1f61915219141e68cefa0b2a60956a7f6cb511
/usr/lib/.build-id/36
/usr/lib/.build-id/36/c1abbdda24b81626a45081e834291c5c395d63
/usr/lib/.build-id/6c
/usr/lib/.build-id/6c/9699cc20c18f85b9efb307fd0029c904ce2e14
/usr/lib/.build-id/f4
/usr/lib/.build-id/f4/03c7693fa63a87de443da4a1c8aa98012c16af
/usr/lib/libgsl.so.25
/usr/lib/libgsl.so.25.0.0
/usr/lib/libgslcblas.so.0
/usr/lib/libgslcblas.so.0.0.0
/usr/share/doc/gsl
/usr/share/doc/gsl/AUTHORS
/usr/share/doc/gsl/ChangeLog
/usr/share/doc/gsl/NEWS
/usr/share/doc/gsl/README
/usr/share/doc/gsl/THANKS
/usr/share/doc/gsl/TODO
/usr/share/licenses/gsl
/usr/share/licenses/gsl/COPYING
/usr/share/man/man1/gsl-histogram.1.gz
/usr/share/man/man1/gsl-randist.1.gz
/usr/bin/gsl-histogram
/usr/bin/gsl-randist
/usr/lib/.build-id
/usr/lib/.build-id/2a
/usr/lib/.build-id/2a/a4bd54dc94de382a7a6cbe545b15b47529da6f
/usr/lib/.build-id/7b
/usr/lib/.build-id/7b/572a227926eae119a70f4fa0bc12ded52656db
/usr/lib/.build-id/87
/usr/lib/.build-id/87/636140c211acc486dd70d3152a99c4428a993e
/usr/lib/.build-id/fb
/usr/lib/.build-id/fb/6024172ed0d1b162924ba25826f1550eba6c59
/usr/lib64/libgsl.so.25
/usr/lib64/libgsl.so.25.0.0
/usr/lib64/libgslcblas.so.0
/usr/lib64/libgslcblas.so.0.0.0
/usr/share/doc/gsl
/usr/share/doc/gsl/AUTHORS
/usr/share/doc/gsl/ChangeLog
/usr/share/doc/gsl/NEWS
/usr/share/doc/gsl/README
/usr/share/doc/gsl/THANKS
/usr/share/doc/gsl/TODO
/usr/share/licenses/gsl
/usr/share/licenses/gsl/COPYING
/usr/share/man/man1/gsl-histogram.1.gz
/usr/share/man/man1/gsl-randist.1.gz
References
- [gsl website](http://www.gnu.org/software/gsl/ http://www.gnu.org/software/gsl/)
Summary
In this tutorial we learn how to install gsl
on Fedora 34 using yum and dnf.