{"id":19687,"date":"2023-05-19T13:13:06","date_gmt":"2023-05-19T13:13:06","guid":{"rendered":"https:\/\/linux.how2shout.com\/?p=19687"},"modified":"2023-05-19T13:16:34","modified_gmt":"2023-05-19T13:16:34","slug":"easygui-python-library-installation-on-ubuntu-with-example","status":"publish","type":"post","link":"https:\/\/linux.how2shout.com\/easygui-python-library-installation-on-ubuntu-with-example\/","title":{"rendered":"EasyGUI Python library Installation on Ubuntu with example"},"content":{"rendered":"\n<p>EasyGUI is another library of Python that helps the developer to create simple GUI (Graphical User Interface) windows and dialogs with ease. It offers an intuitive and straightforward way to create interactive applications without complex code. So, here in this article, we learn the steps and commands to install the EasyGUI library for your Python project on Ubuntu Linux.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-step-1-update-ubuntu-packages\">Step 1: Update Ubuntu Packages<\/h2>\n\n\n\n<p>It is important our Linux system is up to date before planning to install some new software. Therefore, on your command terminal, perform the system update command given below: <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo apt update<\/code><\/pre>\n\n\n\n<p>The above command will also update the cache built by the APT for packages available through the added repositories on the system.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Install Python Tinkter<\/h2>\n\n\n\n<p>Although Ubuntu out of the box comes with Python3 installed, however, the same cannot be true for PIP3 &#8211; a Python package manager.  Therefore, first let&#8217;s confirm, that Python and PIP are pre-installed on our system by running the following commands: <\/p>\n\n\n\n<p><strong>To check the Python version<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">python3 --version<\/code><\/pre>\n\n\n\n<p><strong>For PIP3:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">pip3 --version<\/code><\/pre>\n\n\n\n<p>However, if you don&#8217;t see any output after running the above two commands then probably they are not on your system. So, to install them run the following syntax:  <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo apt install python3 python3-pip<\/code><\/pre>\n\n\n\n<p>After that to use EasyGUI we also need the Python Tinkter library to be installed on our system because it is one which is going to provide GUI functions.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo apt-get install python3-tk<\/code><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Install EasyGUI for Python on Ubuntu<\/h2>\n\n\n\n<p>Now, we know we have both Python and PIP on our system. Let&#8217;s use the PIP to download and install the EasyGUI library for our projects on Ubuntu from the Python Package Index (PyPI). <\/p>\n\n\n\n<p>In your terminal run the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">pip3 install easygui --user<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" width=\"732\" height=\"129\" src=\"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2023\/05\/pip-install-easygui.png\" alt=\"pip install easygui\" class=\"wp-image-19690\"\/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Confirm EasyGUI Installation<\/h2>\n\n\n\n<p>We can verify whether the EasyGUI python GUI library is actually on our system or not. For that simply in your terminal run the given command, it will also provide a directory path where the system has configured the library files.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">python3 -m pip show easygui<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" width=\"736\" height=\"253\" src=\"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2023\/05\/Confirm-EasyGUI-Installation.png\" alt=\"Confirm EasyGUI Installation\" class=\"wp-image-19691\"\/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5: Example to use EasyGUI in Python<\/h2>\n\n\n\n<p>Let&#8217;s also see a simple example in which we create a Python file with some code to import the EasyGUI module and then use it to display a GUI window along with a message.<\/p>\n\n\n\n<p>Open a text editor to create a new Python file, here we are using the popular NANO.<\/p>\n\n\n\n<p>For example, let&#8217;s create a file named &#8211; <strong>test_easygui.py<\/strong>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">nano test_easygui.py<\/code><\/pre>\n\n\n\n<p> Add the following code to the file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">import easygui\n\n# Display a simple message box\neasygui.msgbox(\"Hello, EasyGUI!\")\n\n# Prompt for user input\nname = easygui.enterbox(\"What's your name?\")\n\n# Display a message box with the entered name\neasygui.msgbox(\"Hello, \" + name + \"!\")\n<\/code><\/pre>\n\n\n\n<p>Save the file by pressing <strong>Ctrl+X<\/strong>, type<strong> Y <\/strong>and then hit the <strong>Enter<\/strong> key.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" width=\"696\" height=\"482\" src=\"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2023\/05\/Example-to-use-EasyGUI-in-Python.png\" alt=\"Example to use EasyGUI in Python\" class=\"wp-image-19692\"\/><\/figure>\n\n\n\n<p>After that, execute the created file that imports EasyGUI using the Python interpreter.  <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">python3 test_easygui.py<\/code><\/pre>\n\n\n\n<p>As you execute the create python script, if everything is installed correctly, you will see a GUI window displaying &#8220;<strong>Hello, EasyGUI<\/strong>!&#8221; followed by a prompt for your name. Enter your name and it will greet you with a personalized message. <\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" width=\"799\" height=\"362\" src=\"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2023\/05\/execute-the-python-script.png\" alt=\"execute the python script\" class=\"wp-image-19693\"\/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" width=\"610\" height=\"263\" src=\"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2023\/05\/Install-and-use-EasyGUI-for-Python-on-Ubuntu-Linux.png\" alt=\"Install and use EasyGUI for Python on Ubuntu Linux\" class=\"wp-image-19694\"\/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" width=\"763\" height=\"480\" src=\"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2023\/05\/Tinkter-GUI-example.png\" alt=\"Tinkter GUI example\" class=\"wp-image-19695\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">How to Upgrade<\/h2>\n\n\n\n<p>In the future, if there is some new update available for the easygui library then to upgrade it use:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">pip install --upgrade easygui --user<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Uninstallation (optional)<\/h2>\n\n\n\n<p>In case after some time, you won\u2019t need the easygui library of Python on your Ubuntu Linux system any more than to remove it, we can again use the PIP, here is the command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">pip uninstall easygui<\/code><\/pre>\n\n\n\n<p>So, far in this article, we went through the simple steps to not only install EasyGUI but also Python, PIP, and Tinkter as well. Using EasyGUI you can start building interactive applications with graphical elements, such as message boxes, input dialogs, and more. Check out its <strong><a href=\"https:\/\/easygui.readthedocs.io\/en\/latest\/tutorial.html\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">documentation<\/a><\/strong> for more information.<\/p>\n\n\n\n<p><strong>Other Articles:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/linux.how2shout.com\/how-to-install-basemap-python-library-in-ubuntu-linux\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to install Basemap Python Library in Ubuntu Linux<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/linux.how2shout.com\/6-best-python-ides-available-for-ubuntu-linux-for-coding\/\" target=\"_blank\" rel=\"noreferrer noopener\">6 Best Python IDEs available for Ubuntu Linux for coding<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/linux.how2shout.com\/pygame-installation-on-ubuntu-22-04-or-20-04-linux\/\" target=\"_blank\" rel=\"noreferrer noopener\">Pygame installation on Ubuntu 22.04 or 20.04 Linux<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/linux.how2shout.com\/how-to-install-beautifulsoup-python-module-in-ubuntu-linux\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to install the Beautifulsoup Python module in Ubuntu Linux<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>EasyGUI is another library of Python that helps the developer to create simple GUI (Graphical User Interface) windows and dialogs with ease. It offers an intuitive and straightforward way to create interactive applications without complex code. So, here in this article, we learn the steps and commands to install the EasyGUI library for your Python [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":19694,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_sitemap_exclude":false,"_sitemap_priority":"","_sitemap_frequency":"","_mbp_gutenberg_autopost":false,"footnotes":""},"categories":[3],"tags":[2931,2923,29,30,3172],"class_list":{"0":"post-19687","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-ubuntu","8":"tag-developer","9":"tag-python","10":"tag-ubuntu","11":"tag-ubuntu-20-04","12":"tag-ubuntu-22-04"},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.9 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>EasyGUI Python library Installation on Ubuntu with example<\/title>\n<meta name=\"description\" content=\"Here in this article, we learn the steps and commands to install the EasyGUI library for your Python project on Ubuntu Linux.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linux.how2shout.com\/easygui-python-library-installation-on-ubuntu-with-example\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"EasyGUI Python library Installation on Ubuntu with example\" \/>\n<meta property=\"og:description\" content=\"Here in this article, we learn the steps and commands to install the EasyGUI library for your Python project on Ubuntu Linux.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linux.how2shout.com\/easygui-python-library-installation-on-ubuntu-with-example\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxShout\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/how2shout\" \/>\n<meta property=\"article:published_time\" content=\"2023-05-19T13:13:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-05-19T13:16:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2023\/05\/Install-and-use-EasyGUI-for-Python-on-Ubuntu-Linux.png\" \/>\n\t<meta property=\"og:image:width\" content=\"610\" \/>\n\t<meta property=\"og:image:height\" content=\"263\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Heyan Maurya\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@h2smedia\" \/>\n<meta name=\"twitter:site\" content=\"@h2smedia\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Heyan Maurya\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/easygui-python-library-installation-on-ubuntu-with-example\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/easygui-python-library-installation-on-ubuntu-with-example\\\/\"},\"author\":{\"name\":\"Heyan Maurya\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#\\\/schema\\\/person\\\/102d73e20384ea409022d5bafddc0f72\"},\"headline\":\"EasyGUI Python library Installation on Ubuntu with example\",\"datePublished\":\"2023-05-19T13:13:06+00:00\",\"dateModified\":\"2023-05-19T13:16:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/easygui-python-library-installation-on-ubuntu-with-example\\\/\"},\"wordCount\":619,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/easygui-python-library-installation-on-ubuntu-with-example\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/Install-and-use-EasyGUI-for-Python-on-Ubuntu-Linux.png\",\"keywords\":[\"developer\",\"python\",\"ubuntu\",\"ubuntu 20.04\",\"Ubuntu 22.04\"],\"articleSection\":[\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linux.how2shout.com\\\/easygui-python-library-installation-on-ubuntu-with-example\\\/#respond\"]}],\"copyrightYear\":\"2023\",\"copyrightHolder\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/easygui-python-library-installation-on-ubuntu-with-example\\\/\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/easygui-python-library-installation-on-ubuntu-with-example\\\/\",\"name\":\"EasyGUI Python library Installation on Ubuntu with example\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/easygui-python-library-installation-on-ubuntu-with-example\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/easygui-python-library-installation-on-ubuntu-with-example\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/Install-and-use-EasyGUI-for-Python-on-Ubuntu-Linux.png\",\"datePublished\":\"2023-05-19T13:13:06+00:00\",\"dateModified\":\"2023-05-19T13:16:34+00:00\",\"description\":\"Here in this article, we learn the steps and commands to install the EasyGUI library for your Python project on Ubuntu Linux.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/easygui-python-library-installation-on-ubuntu-with-example\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linux.how2shout.com\\\/easygui-python-library-installation-on-ubuntu-with-example\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/easygui-python-library-installation-on-ubuntu-with-example\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/Install-and-use-EasyGUI-for-Python-on-Ubuntu-Linux.png\",\"contentUrl\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/Install-and-use-EasyGUI-for-Python-on-Ubuntu-Linux.png\",\"width\":610,\"height\":263,\"caption\":\"Install and use EasyGUI for Python on Ubuntu Linux\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/easygui-python-library-installation-on-ubuntu-with-example\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linux.how2shout.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"EasyGUI Python library Installation on Ubuntu with example\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#website\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/\",\"name\":\"LinuxShout\",\"description\":\"Find the open source solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#organization\"},\"alternateName\":\"Linux how2shout\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linux.how2shout.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#organization\",\"name\":\"LinuxShout\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/Linux-Shout-Logo.png\",\"contentUrl\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/Linux-Shout-Logo.png\",\"width\":503,\"height\":349,\"caption\":\"LinuxShout\"},\"image\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/how2shout\",\"https:\\\/\\\/x.com\\\/h2smedia\",\"https:\\\/\\\/instagram.com\\\/h2smedia\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/h2smedia\\\/\",\"https:\\\/\\\/www.pinterest.com\\\/how2shout\",\"https:\\\/\\\/youtube.com\\\/h2smedia\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#\\\/schema\\\/person\\\/102d73e20384ea409022d5bafddc0f72\",\"name\":\"Heyan Maurya\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g\",\"caption\":\"Heyan Maurya\"},\"description\":\"I have a keen interest in all kinds of technologies, from consumer-tech to enterprise solutions. However, I am still trying to learn Linux and whatever the problems I face, trying to give solutions for the same, here...\",\"sameAs\":[\"https:\\\/\\\/www.how2shout.com\\\/\"],\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/author\\\/heyan\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"EasyGUI Python library Installation on Ubuntu with example","description":"Here in this article, we learn the steps and commands to install the EasyGUI library for your Python project on Ubuntu Linux.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/linux.how2shout.com\/easygui-python-library-installation-on-ubuntu-with-example\/","og_locale":"en_US","og_type":"article","og_title":"EasyGUI Python library Installation on Ubuntu with example","og_description":"Here in this article, we learn the steps and commands to install the EasyGUI library for your Python project on Ubuntu Linux.","og_url":"https:\/\/linux.how2shout.com\/easygui-python-library-installation-on-ubuntu-with-example\/","og_site_name":"LinuxShout","article_publisher":"https:\/\/www.facebook.com\/how2shout","article_published_time":"2023-05-19T13:13:06+00:00","article_modified_time":"2023-05-19T13:16:34+00:00","og_image":[{"width":610,"height":263,"url":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2023\/05\/Install-and-use-EasyGUI-for-Python-on-Ubuntu-Linux.png","type":"image\/png"}],"author":"Heyan Maurya","twitter_card":"summary_large_image","twitter_creator":"@h2smedia","twitter_site":"@h2smedia","twitter_misc":{"Written by":"Heyan Maurya","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/linux.how2shout.com\/easygui-python-library-installation-on-ubuntu-with-example\/#article","isPartOf":{"@id":"https:\/\/linux.how2shout.com\/easygui-python-library-installation-on-ubuntu-with-example\/"},"author":{"name":"Heyan Maurya","@id":"https:\/\/linux.how2shout.com\/#\/schema\/person\/102d73e20384ea409022d5bafddc0f72"},"headline":"EasyGUI Python library Installation on Ubuntu with example","datePublished":"2023-05-19T13:13:06+00:00","dateModified":"2023-05-19T13:16:34+00:00","mainEntityOfPage":{"@id":"https:\/\/linux.how2shout.com\/easygui-python-library-installation-on-ubuntu-with-example\/"},"wordCount":619,"commentCount":0,"publisher":{"@id":"https:\/\/linux.how2shout.com\/#organization"},"image":{"@id":"https:\/\/linux.how2shout.com\/easygui-python-library-installation-on-ubuntu-with-example\/#primaryimage"},"thumbnailUrl":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2023\/05\/Install-and-use-EasyGUI-for-Python-on-Ubuntu-Linux.png","keywords":["developer","python","ubuntu","ubuntu 20.04","Ubuntu 22.04"],"articleSection":["Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linux.how2shout.com\/easygui-python-library-installation-on-ubuntu-with-example\/#respond"]}],"copyrightYear":"2023","copyrightHolder":{"@id":"https:\/\/linux.how2shout.com\/#organization"}},{"@type":"WebPage","@id":"https:\/\/linux.how2shout.com\/easygui-python-library-installation-on-ubuntu-with-example\/","url":"https:\/\/linux.how2shout.com\/easygui-python-library-installation-on-ubuntu-with-example\/","name":"EasyGUI Python library Installation on Ubuntu with example","isPartOf":{"@id":"https:\/\/linux.how2shout.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linux.how2shout.com\/easygui-python-library-installation-on-ubuntu-with-example\/#primaryimage"},"image":{"@id":"https:\/\/linux.how2shout.com\/easygui-python-library-installation-on-ubuntu-with-example\/#primaryimage"},"thumbnailUrl":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2023\/05\/Install-and-use-EasyGUI-for-Python-on-Ubuntu-Linux.png","datePublished":"2023-05-19T13:13:06+00:00","dateModified":"2023-05-19T13:16:34+00:00","description":"Here in this article, we learn the steps and commands to install the EasyGUI library for your Python project on Ubuntu Linux.","breadcrumb":{"@id":"https:\/\/linux.how2shout.com\/easygui-python-library-installation-on-ubuntu-with-example\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linux.how2shout.com\/easygui-python-library-installation-on-ubuntu-with-example\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linux.how2shout.com\/easygui-python-library-installation-on-ubuntu-with-example\/#primaryimage","url":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2023\/05\/Install-and-use-EasyGUI-for-Python-on-Ubuntu-Linux.png","contentUrl":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2023\/05\/Install-and-use-EasyGUI-for-Python-on-Ubuntu-Linux.png","width":610,"height":263,"caption":"Install and use EasyGUI for Python on Ubuntu Linux"},{"@type":"BreadcrumbList","@id":"https:\/\/linux.how2shout.com\/easygui-python-library-installation-on-ubuntu-with-example\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linux.how2shout.com\/"},{"@type":"ListItem","position":2,"name":"EasyGUI Python library Installation on Ubuntu with example"}]},{"@type":"WebSite","@id":"https:\/\/linux.how2shout.com\/#website","url":"https:\/\/linux.how2shout.com\/","name":"LinuxShout","description":"Find the open source solutions","publisher":{"@id":"https:\/\/linux.how2shout.com\/#organization"},"alternateName":"Linux how2shout","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linux.how2shout.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/linux.how2shout.com\/#organization","name":"LinuxShout","url":"https:\/\/linux.how2shout.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linux.how2shout.com\/#\/schema\/logo\/image\/","url":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2020\/06\/Linux-Shout-Logo.png","contentUrl":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2020\/06\/Linux-Shout-Logo.png","width":503,"height":349,"caption":"LinuxShout"},"image":{"@id":"https:\/\/linux.how2shout.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/how2shout","https:\/\/x.com\/h2smedia","https:\/\/instagram.com\/h2smedia","https:\/\/www.linkedin.com\/company\/h2smedia\/","https:\/\/www.pinterest.com\/how2shout","https:\/\/youtube.com\/h2smedia"]},{"@type":"Person","@id":"https:\/\/linux.how2shout.com\/#\/schema\/person\/102d73e20384ea409022d5bafddc0f72","name":"Heyan Maurya","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g","caption":"Heyan Maurya"},"description":"I have a keen interest in all kinds of technologies, from consumer-tech to enterprise solutions. However, I am still trying to learn Linux and whatever the problems I face, trying to give solutions for the same, here...","sameAs":["https:\/\/www.how2shout.com\/"],"url":"https:\/\/linux.how2shout.com\/author\/heyan\/"}]}},"_links":{"self":[{"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/posts\/19687","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/comments?post=19687"}],"version-history":[{"count":3,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/posts\/19687\/revisions"}],"predecessor-version":[{"id":19700,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/posts\/19687\/revisions\/19700"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/media\/19694"}],"wp:attachment":[{"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/media?parent=19687"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/categories?post=19687"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/tags?post=19687"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}