How To Install legofy on Fedora 34
Introduction
In this tutorial we learn how to install legofy on Fedora 34.
What is legofy
Legofy is a python program that takes a static image or gif and makes it so that it looks as if it was built out of LEGO.
We can use yum or dnf to install legofy on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install legofy.
Install legofy 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 legofy using dnf by running the following command:
sudo dnf -y install legofy
Install legofy 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 legofy using yum by running the following command:
sudo yum -y install legofy
How To Uninstall legofy on Fedora 34
To uninstall only the legofy package we can use the following command:
sudo dnf remove legofy
legofy Package Contents on Fedora 34
/usr/bin/legofy
/usr/lib/python3.9/site-packages/legofy
/usr/lib/python3.9/site-packages/legofy-1.0.0-py3.9.egg-info
/usr/lib/python3.9/site-packages/legofy-1.0.0-py3.9.egg-info/PKG-INFO
/usr/lib/python3.9/site-packages/legofy-1.0.0-py3.9.egg-info/SOURCES.txt
/usr/lib/python3.9/site-packages/legofy-1.0.0-py3.9.egg-info/dependency_links.txt
/usr/lib/python3.9/site-packages/legofy-1.0.0-py3.9.egg-info/entry_points.txt
/usr/lib/python3.9/site-packages/legofy-1.0.0-py3.9.egg-info/requires.txt
/usr/lib/python3.9/site-packages/legofy-1.0.0-py3.9.egg-info/top_level.txt
/usr/lib/python3.9/site-packages/legofy/__init__.py
/usr/lib/python3.9/site-packages/legofy/__pycache__
/usr/lib/python3.9/site-packages/legofy/__pycache__/__init__.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/legofy/__pycache__/__init__.cpython-39.pyc
/usr/lib/python3.9/site-packages/legofy/__pycache__/cli.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/legofy/__pycache__/cli.cpython-39.pyc
/usr/lib/python3.9/site-packages/legofy/__pycache__/images2gif_py2.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/legofy/__pycache__/images2gif_py2.cpython-39.pyc
/usr/lib/python3.9/site-packages/legofy/__pycache__/images2gif_py3.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/legofy/__pycache__/images2gif_py3.cpython-39.pyc
/usr/lib/python3.9/site-packages/legofy/__pycache__/legofy_gui.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/legofy/__pycache__/legofy_gui.cpython-39.pyc
/usr/lib/python3.9/site-packages/legofy/__pycache__/palettes.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/legofy/__pycache__/palettes.cpython-39.pyc
/usr/lib/python3.9/site-packages/legofy/assets
/usr/lib/python3.9/site-packages/legofy/assets/bricks
/usr/lib/python3.9/site-packages/legofy/assets/bricks/1x1.png
/usr/lib/python3.9/site-packages/legofy/cli.py
/usr/lib/python3.9/site-packages/legofy/images2gif_py2.py
/usr/lib/python3.9/site-packages/legofy/images2gif_py3.py
/usr/lib/python3.9/site-packages/legofy/legofy_gui.py
/usr/lib/python3.9/site-packages/legofy/palettes.py
/usr/share/doc/legofy
/usr/share/doc/legofy/README.md
/usr/share/licenses/legofy
/usr/share/licenses/legofy/LICENSE
/usr/share/man/man1/legofy.1.gz
References
Summary
In this tutorial we learn how to install legofy on Fedora 34 using yum and dnf.