How To Install graphene on Fedora 34
Introduction
In this tutorial we learn how to install graphene
on Fedora 34.
What is graphene
Graphene provides a small set of mathematical types needed to implement graphic libraries that deal with 2D and 3D transformations and projections. graphene 1.10.6 2.fc34 x86_64 64 k graphene-1.10.6-2.fc34.src.rpm updates Thin layer of types for graphic libraries https MIT Graphene provides a small set of mathematical types needed to implement graphic libraries that deal with 2D and 3D transformations and projections.
We can use yum
or dnf
to install graphene
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install graphene.
Install graphene 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 graphene
using dnf
by running the following command:
sudo dnf -y install graphene
Install graphene 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 graphene
using yum
by running the following command:
sudo yum -y install graphene
How To Uninstall graphene on Fedora 34
To uninstall only the graphene
package we can use the following command:
sudo dnf remove graphene
graphene Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/71
/usr/lib/.build-id/71/1f0451ba110f67f4e9b35bf8a35066f8b332ec
/usr/lib64/girepository-1.0
/usr/lib64/girepository-1.0/Graphene-1.0.typelib
/usr/lib64/libgraphene-1.0.so.0
/usr/lib64/libgraphene-1.0.so.0.1000.6
/usr/share/doc/graphene
/usr/share/doc/graphene/README.md
/usr/share/licenses/graphene
/usr/share/licenses/graphene/LICENSE.txt
/usr/lib/.build-id
/usr/lib/.build-id/a6
/usr/lib/.build-id/a6/1b35bf3cfc514b09a26b175c5deea081e2f8a7
/usr/lib64/girepository-1.0
/usr/lib64/girepository-1.0/Graphene-1.0.typelib
/usr/lib64/libgraphene-1.0.so.0
/usr/lib64/libgraphene-1.0.so.0.1000.6
/usr/share/doc/graphene
/usr/share/doc/graphene/README.md
/usr/share/licenses/graphene
/usr/share/licenses/graphene/LICENSE.txt
/usr/lib/.build-id
/usr/lib/.build-id/d2
/usr/lib/.build-id/d2/7257f025eebbd5d0bee5a83e82b58e579c6f1c
/usr/lib/girepository-1.0
/usr/lib/girepository-1.0/Graphene-1.0.typelib
/usr/lib/libgraphene-1.0.so.0
/usr/lib/libgraphene-1.0.so.0.1000.6
/usr/share/doc/graphene
/usr/share/doc/graphene/README.md
/usr/share/licenses/graphene
/usr/share/licenses/graphene/LICENSE.txt
/usr/lib/.build-id
/usr/lib/.build-id/d5
/usr/lib/.build-id/d5/52d3d59fea532612b11e7da6d27a5af2e31e7a
/usr/lib/girepository-1.0
/usr/lib/girepository-1.0/Graphene-1.0.typelib
/usr/lib/libgraphene-1.0.so.0
/usr/lib/libgraphene-1.0.so.0.1000.6
/usr/share/doc/graphene
/usr/share/doc/graphene/README.md
/usr/share/licenses/graphene
/usr/share/licenses/graphene/LICENSE.txt
References
- [graphene website](https://github.com/ebassi/graphene https://github.com/ebassi/graphene)
Summary
In this tutorial we learn how to install graphene
on Fedora 34 using yum and dnf.