How To Install gtengine on Fedora 34
Introduction
In this tutorial we learn how to install gtengine
on Fedora 34.
What is gtengine
A library of source code for computing in the fields of mathematics, graphics, image analysis, and physics. The engine is written in C++ 11 and, as such, has portable access to standard constructs for multithreading programming on cores. The engine also supports high-performance computing using general purpose GPU programming (GPGPU). SIMD code is also available using Intel Streaming SIMD Extensions (SSE). GTEngine requires OpenGL 4.5.0 (or later). gtengine 1 5.6 1.fc34 x86_64 472 k gtengine-5.6-1.fc34.src.rpm fedora Library for computations in mathematics, graphics, image analysis, and physics http Boost A library of source code for computing in the fields of mathematics, graphics, image analysis, and physics. The engine is written in C++ 11 and, as such, has portable access to standard constructs for multithreading programming on cores. The engine also supports high-performance computing using general purpose GPU programming (GPGPU). SIMD code is also available using Intel Streaming SIMD Extensions (SSE). GTEngine requires OpenGL 4.5.0 (or later).
We can use yum
or dnf
to install gtengine
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install gtengine.
Install gtengine 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 gtengine
using dnf
by running the following command:
sudo dnf -y install gtengine
Install gtengine 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 gtengine
using yum
by running the following command:
sudo yum -y install gtengine
How To Uninstall gtengine on Fedora 34
To uninstall only the gtengine
package we can use the following command:
sudo dnf remove gtengine
gtengine Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/1b
/usr/lib/.build-id/1b/e530991027452677e92964e9b703947f4a985e
/usr/lib/.build-id/59
/usr/lib/.build-id/59/ef204581f4a6e0a10a68af157b6c17989d3f38
/usr/lib/.build-id/65
/usr/lib/.build-id/65/d646f2088f275e01d020c2382b981e725250ef
/usr/lib/libgtapplications.so.5
/usr/lib/libgtapplications.so.5.6
/usr/lib/libgtgraphics.so.5
/usr/lib/libgtgraphics.so.5.6
/usr/lib/libgtmathematicsgpu.so.5
/usr/lib/libgtmathematicsgpu.so.5.6
/usr/share/doc/gtengine
/usr/share/doc/gtengine/README.md
/usr/share/licenses/gtengine
/usr/share/licenses/gtengine/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/7e
/usr/lib/.build-id/7e/17d44964e05dbc1a02fc094862c56eb5f84ad7
/usr/lib/.build-id/87
/usr/lib/.build-id/87/31933b058a17555d89d83cdcab499db41c723d
/usr/lib/.build-id/b2
/usr/lib/.build-id/b2/7708bb071833c386821b4cde2d17a60b6aaf2b
/usr/lib64/libgtapplications.so.5
/usr/lib64/libgtapplications.so.5.6
/usr/lib64/libgtgraphics.so.5
/usr/lib64/libgtgraphics.so.5.6
/usr/lib64/libgtmathematicsgpu.so.5
/usr/lib64/libgtmathematicsgpu.so.5.6
/usr/share/doc/gtengine
/usr/share/doc/gtengine/README.md
/usr/share/licenses/gtengine
/usr/share/licenses/gtengine/LICENSE
References
- [gtengine website](http://www.geometrictools.com http://www.geometrictools.com)
Summary
In this tutorial we learn how to install gtengine
on Fedora 34 using yum and dnf.