How To Install python3-easygui on Fedora 36
Introduction
In this tutorial we learn how to install python3-easygui
on Fedora 36.
What is python3-easygui
Experienced Pythonistas need support for quick and dirty GUI features. New Python programmers need GUI capabilities that don’t require any knowledge of Tkinter, frames, widgets, callbacks or lambda. This is what EasyGUI provides. Using EasyGUI, all GUI interactions are invoked by simple function calls. EasyGUI is different from other GUIs in that EasyGUI is NOT event-driven. It allows you to program in a traditional linear fashion, and to put up dialogs for simple input and output when you need to. If you have not yet learned the event-driven paradigm for GUI programming, EasyGUI will allow you to be productive with very basic tasks immediately. Later, if you wish to make the transition to an event-driven GUI paradigm, you can do so with a more powerful GUI package such as anygui, PythonCard, Tkinter, wxPython, etc. This package allows for use of easygui with Python 3.
We can use yum
or dnf
to install python3-easygui
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install python3-easygui.
Install python3-easygui on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install python3-easygui
using dnf
by running the following command:
sudo dnf -y install python3-easygui
Install python3-easygui on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install python3-easygui
using yum
by running the following command:
sudo yum -y install python3-easygui
How To Uninstall python3-easygui on Fedora 36
To uninstall only the python3-easygui
package we can use the following command:
sudo dnf remove python3-easygui
python3-easygui Package Contents on Fedora 36
/usr/lib/python3.10/site-packages/__pycache__/easygui.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/__pycache__/easygui.cpython-310.pyc
/usr/lib/python3.10/site-packages/easygui-0.96-py3.10.egg-info
/usr/lib/python3.10/site-packages/easygui.py
/usr/share/doc/python3-easygui
/usr/share/doc/python3-easygui/cookbook
/usr/share/doc/python3-easygui/cookbook/index.html
/usr/share/doc/python3-easygui/easygui-LICENSE.txt
/usr/share/doc/python3-easygui/easygui_license_info.txt
/usr/share/doc/python3-easygui/easygui_pydoc.html
/usr/share/doc/python3-easygui/easygui_version_info.html
/usr/share/doc/python3-easygui/epydoc
/usr/share/doc/python3-easygui/epydoc/api-objects.txt
/usr/share/doc/python3-easygui/epydoc/class-tree.html
/usr/share/doc/python3-easygui/epydoc/crarr.png
/usr/share/doc/python3-easygui/epydoc/easygui-module.html
/usr/share/doc/python3-easygui/epydoc/easygui-pysrc.html
/usr/share/doc/python3-easygui/epydoc/easygui.EgStore-class.html
/usr/share/doc/python3-easygui/epydoc/easygui.FileTypeObject-class.html
/usr/share/doc/python3-easygui/epydoc/epydoc.css
/usr/share/doc/python3-easygui/epydoc/epydoc.js
/usr/share/doc/python3-easygui/epydoc/frames.html
/usr/share/doc/python3-easygui/epydoc/help.html
/usr/share/doc/python3-easygui/epydoc/identifier-index.html
/usr/share/doc/python3-easygui/epydoc/index.html
/usr/share/doc/python3-easygui/epydoc/module-tree.html
/usr/share/doc/python3-easygui/epydoc/redirect.html
/usr/share/doc/python3-easygui/epydoc/toc-easygui-module.html
/usr/share/doc/python3-easygui/epydoc/toc-everything.html
/usr/share/doc/python3-easygui/epydoc/toc.html
/usr/share/doc/python3-easygui/faq
/usr/share/doc/python3-easygui/faq/index.html
/usr/share/doc/python3-easygui/pydoc
/usr/share/doc/python3-easygui/pydoc/easygui_pydoc.html
/usr/share/doc/python3-easygui/tutorial
/usr/share/doc/python3-easygui/tutorial/gallery.html
/usr/share/doc/python3-easygui/tutorial/index.html
/usr/share/doc/python3-easygui/tutorial/python-logo.gif
/usr/share/doc/python3-easygui/tutorial/screenshot2.png
/usr/share/doc/python3-easygui/tutorial/screenshot3.png
/usr/share/doc/python3-easygui/tutorial/screenshot4.png
/usr/share/doc/python3-easygui/tutorial/screenshot_buttonbox-with-image.gif
/usr/share/doc/python3-easygui/tutorial/screenshot_buttonbox_with_image.png
/usr/share/doc/python3-easygui/tutorial/screenshot_ccbox.png
/usr/share/doc/python3-easygui/tutorial/screenshot_choicebox.png
/usr/share/doc/python3-easygui/tutorial/screenshot_choicebox_icecream.png
/usr/share/doc/python3-easygui/tutorial/screenshot_choicebox_monofonts_and_exit_button.gif
/usr/share/doc/python3-easygui/tutorial/screenshot_choicebox_with_multiple_buttons.gif
/usr/share/doc/python3-easygui/tutorial/screenshot_codebox_vista.png
/usr/share/doc/python3-easygui/tutorial/screenshot_exceptionbox_vista.png
/usr/share/doc/python3-easygui/tutorial/screenshot_fileopenbox_vista.png
/usr/share/doc/python3-easygui/tutorial/screenshot_msgbox.png
/usr/share/doc/python3-easygui/tutorial/screenshot_multchoicebox.png
/usr/share/doc/python3-easygui/tutorial/screenshot_multenterbox.png
/usr/share/doc/python3-easygui/tutorial/screenshot_multenterbox_vista.png
/usr/share/doc/python3-easygui/tutorial/screenshot_passwordbox.png
References
Summary
In this tutorial we learn how to install python3-easygui
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).