{"id":1164,"date":"2025-01-09T08:47:34","date_gmt":"2025-01-09T08:47:34","guid":{"rendered":"https:\/\/www.hostingseekers.com\/how-to\/?p=1164"},"modified":"2025-05-16T08:16:32","modified_gmt":"2025-05-16T08:16:32","slug":"run-python-in-ubuntu","status":"publish","type":"post","link":"https:\/\/www.hostingseekers.com\/how-to\/run-python-in-ubuntu\/","title":{"rendered":"How to Run Python in Ubuntu?"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-526\" src=\"https:\/\/www.hostingseekers.com\/how-to\/wp-content\/uploads\/2025\/01\/Frame-1171279530-3.webp\" width=\"628\" height=\"353\" \/><br \/>\nPython has emerged as one of the best programming languages for AI due to its readability, simplicity, and extensive libraries. If you are a developer or getting started with python and using Ubuntu. In this article we will explore vital steps on how to run python in ubuntu.<\/p>\n<h2><strong>Benefits of Running Python in Ubuntu<\/strong><\/h2>\n<p>Ubuntu is one of the most popular <a href=\"https:\/\/www.hostingseekers.com\/blog\/linux-distributions-for-beginners\/\">Linux distributions<\/a>, known for its user-friendly interface, robust performance, and developer-friendly ecosystem. Python, being a versatile and widely used programming language, pairs exceptionally well with Ubuntu. Here are some of the key benefits of running Python in Ubuntu:<\/p>\n<h3><strong>1. Pre-installed Python Environment<\/strong><\/h3>\n<p>You can start working with Python immediately without the need for additional installations. Both Python 2 and Python 3 are typically included, although Python 3 is the default in modern versions.<\/p>\n<h3><strong>2. Open-source Compatibility<\/strong><\/h3>\n<p>Ubuntu, as an open-source operating system, complements Python\u2019s open-source nature. Both are supported by vast communities, making it easier to integrate and use open-source tools, libraries, and frameworks.<\/p>\n<h3><strong>3. Efficient Package Management<\/strong><\/h3>\n<p>You can quickly install system dependencies using apt and Python-specific packages with pip, allowing smooth project setup and dependency management.<\/p>\n<h3><strong>4. Developer-friendly Ecosystem<\/strong><\/h3>\n<p>Ubuntu is a preferred OS for developers, offering tools like Git, Docker, and various IDEs. Python development on Ubuntu is enhanced by the availability of these tools, enabling you to build, test, and deploy applications efficiently.<\/p>\n<h3><strong>5. Scripting and Automation<\/strong><\/h3>\n<p>Python is widely used for scripting and automation tasks, and Ubuntu\u2019s terminal-based environment complements this. From writing small scripts to automated tasks to building complex automation workflows, the combination of Python and Ubuntu is incredibly powerful.<\/p>\n<h3><strong>6. Performance and Reliability<\/strong><\/h3>\n<p>Ubuntu\u2019s seamless architecture ensures optimal performance, which is crucial for Python developers working on resource-intensive projects like machine learning, data analysis, or web scraping.<\/p>\n<h3><strong>7. Seamless Integration with Linux Tools<\/strong><\/h3>\n<p>Python can easily interact with Linux tools and utilities. For example, you can <a href=\"https:\/\/www.hostingseekers.com\/how-to\/run-a-python-script-in-linux-vps\/\">write Python scripts to process files<\/a>, monitor system performance, or manage network configurations directly on Ubuntu.<\/p>\n<h3><strong>8. Community and Resources<\/strong><\/h3>\n<p>Ubuntu and Python each have large and active communities. This makes it easier to find tutorials, forums, and troubleshooting resources when you encounter issues.<\/p>\n<h2><strong>Prerequisites<\/strong><\/h2>\n<p>Before you start running Python in Ubuntu, you need to ensure that a few prerequisites are met. Here is what you need:<\/p>\n<h3><strong>1. Ubuntu Operating System<\/strong><\/h3>\n<p>Ensure you have Ubuntu installed on your system. Python can run on most Ubuntu versions, but it\u2019s recommended to use a supported version (e.g., 22.04 LTS or 20.04 LTS) for optimal compatibility.<\/p>\n<h3><strong>2. Basic Terminal Knowledge<\/strong><\/h3>\n<p>Familiarity with using the terminal is essential, as most Python-related tasks on Ubuntu are executed from the terminal. Knowing basic commands like cd, ls, sudo, and apt will be helpful.<\/p>\n<h3><strong>3. Python Installed<\/strong><\/h3>\n<p>Verify if Python is installed by running python3 &#8211;version in the terminal. If it\u2019s not installed, you can easily set it up using Ubuntu\u2019s package manager.<\/p>\n<h3><strong>4. Code Editor<\/strong><\/h3>\n<p>While not mandatory, a code editor or Integrated Development Environment (IDE) can significantly enhance your coding experience. Popular choices include VS Code, PyCharm, or even terminal-based editors like Vim and Nano.<\/p>\n<h3><strong>5. Internet Connection<\/strong><\/h3>\n<p>If you need to install additional packages or libraries using pip, ensure your system has a stable internet connection.<\/p>\n<h3><strong>6. Root Access<\/strong><\/h3>\n<p>Some installations or configurations may require administrative privileges. Make sure you have access to the sudo command.<\/p>\n<h2><strong>Steps to Run Python in Ubuntu<\/strong><\/h2>\n<p>To run python in ubuntu, you need to <a href=\"https:\/\/www.hostingseekers.com\/how-to\/install-python-in-ubuntu\/\">install python in ubuntu<\/a>, after installation, follow these steps to run Python in Ubuntu effectively:<\/p>\n<h3><strong>Step 1: Open the Terminal<\/strong><\/h3>\n<p>To begin, open the terminal. You can do this by pressing <b>Ctrl + Alt + T<\/b> or searching for <b>\u201cTerminal\u201d<\/b> in the application menu.<\/p>\n<h3><strong>Step 2: Check if it is installed<\/strong><\/h3>\n<p>Confirm that Python is installed by checking its version. If Python is installed, it will display the version number <b>(e.g., Python 3.10.6)<\/b>.<\/p>\n<h3><strong>Step 3: Start Python Interactive Shell<\/strong><\/h3>\n<p>To start the Python interactive shell, type the following command in the terminal; <b>python or python 3<\/b> and press <b>Enter<\/b>.<\/p>\n<p>You will see a Python prompt <b>(&gt;&gt;&gt;)<\/b> where you can directly execute Python commands. For example:<\/p>\n<p>To exit the interactive shell, <b>type exit()<\/b> or <b>press Ctrl + D<\/b>.<\/p>\n<h3><strong>Step 4: Write Python Code in a File<\/strong><\/h3>\n<p>Use a text editor to write your Python code. For example, create a file named <b>hello.py:<\/b><\/p>\n<p>Add the following code to the file: <b>(in Nano, press Ctrl + O, then Ctrl + X)<\/b>.<\/p>\n<p>Save and exit the editor.<\/p>\n<h3><strong>Step 5: Run a Python Script<\/strong><\/h3>\n<p>Run the Python script by using the <b>python3<\/b> command followed by the file name:<\/p>\n<p><b>python3 hello.py<\/b><\/p>\n<p>This will execute the script and display the output: <b>Hello, World!<\/b><\/p>\n<h3><strong>Step 6: Install Additional Libraries<\/strong><\/h3>\n<p>Many Python projects require additional libraries or frameworks. Use pip3 to install packages. For example, to install the requests library:<\/p>\n<ul>\n<li>import requests<\/li>\n<li>print(requests.version)<\/li>\n<\/ul>\n<h3><strong>Step 7: Debug and Test Your Code<\/strong><\/h3>\n<p>Use tools like <b>Pd.B.<\/b> for debugging or write test cases using the unittest framework to ensure your code works as expected.<\/p>\n<h2><strong>Summing Up<\/strong><\/h2>\n<p>Running Python in Ubuntu is straightforward and comes with numerous benefits, from pre-installed environments to seamless integration with open-source tools. By following the steps outlined above, you can set up, write, and execute Python scripts efficiently. With Ubuntu\u2019s stability and Python\u2019s versatility, this combination is perfect for beginners and professionals alike, whether for scripting, automation, or advanced development tasks.<\/p>\n<h2><strong>Frequently Asked Question<\/strong><\/h2>\n<h4><strong>Q1. How to run Python in the terminal on Ubuntu?<\/strong><\/h4>\n<p><b>Ans.<\/b> Type python in the terminal and press Enter (if Python 2 is installed).<\/p>\n<h4><strong>Q 2. How to run Python3 in the terminal?<\/strong><\/h4>\n<p><b>Ans.<\/b> Type python3 in the terminal and press Enter.<\/p>\n<h4><strong>Q 3. How do I run a terminal program in Ubuntu?<\/strong><\/h4>\n<p><b>Ans.<\/b> Type the program&#8217;s name (e.g., ls, vim, or gcc) and press Enter.<\/p>\n<h4><strong>Q 4. How to run a file in Ubuntu terminal?<\/strong><\/h4>\n<p><b>Ans.<\/b> Navigate to the file&#8217;s directory using cd, then type .\/filename (if it&#8217;s an executable) or use the appropriate command (e.g., python3 filename.py for Python files).<\/p>\n<h4><strong>Q 5. How to run code on Ubuntu?<\/strong><\/h4>\n<p><b>Ans.<\/b> Open a terminal, navigate to the file&#8217;s directory, and use the relevant interpreter or compiler (e.g., python3, gcc, java).<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Python has emerged as one of the best programming languages for AI due to its readability, simplicity, and extensive libraries. If you are a developer or getting started with python and using Ubuntu. In this article we will explore vital steps on how to run python in ubuntu. Benefits of Running Python in Ubuntu Ubuntu [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1209,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[13],"tags":[],"class_list":["post-1164","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-python"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Run Python in Ubuntu: Step-by-Step Guide<\/title>\n<meta name=\"description\" content=\"Want to run Python on Ubuntu? This comprehensive guide covers everything step by step to run your first Python script in Ubuntu.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.hostingseekers.com\/how-to\/run-python-in-ubuntu\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Run Python in Ubuntu: Step-by-Step Guide\" \/>\n<meta property=\"og:description\" content=\"Want to run Python on Ubuntu? This comprehensive guide covers everything step by step to run your first Python script in Ubuntu.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hostingseekers.com\/how-to\/run-python-in-ubuntu\/\" \/>\n<meta property=\"og:site_name\" content=\"How To Guides\" \/>\n<meta property=\"article:published_time\" content=\"2025-01-09T08:47:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-16T08:16:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.hostingseekers.com\/how-to\/wp-content\/uploads\/2025\/01\/Frame-1171279530-3.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"675\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Manvinder Singh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Manvinder Singh\" \/>\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\":\"Article\",\"@id\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/run-python-in-ubuntu\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/run-python-in-ubuntu\\\/\"},\"author\":{\"name\":\"Manvinder Singh\",\"@id\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/#\\\/schema\\\/person\\\/67e44648c1e60cf8a04bc0bf53c227d7\"},\"headline\":\"How to Run Python in Ubuntu?\",\"datePublished\":\"2025-01-09T08:47:34+00:00\",\"dateModified\":\"2025-05-16T08:16:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/run-python-in-ubuntu\\\/\"},\"wordCount\":1020,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/run-python-in-ubuntu\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/wp-content\\\/uploads\\\/2025\\\/01\\\/Frame-1171279530-3.webp\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/run-python-in-ubuntu\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/run-python-in-ubuntu\\\/\",\"url\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/run-python-in-ubuntu\\\/\",\"name\":\"How to Run Python in Ubuntu: Step-by-Step Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/run-python-in-ubuntu\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/run-python-in-ubuntu\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/wp-content\\\/uploads\\\/2025\\\/01\\\/Frame-1171279530-3.webp\",\"datePublished\":\"2025-01-09T08:47:34+00:00\",\"dateModified\":\"2025-05-16T08:16:32+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/#\\\/schema\\\/person\\\/67e44648c1e60cf8a04bc0bf53c227d7\"},\"description\":\"Want to run Python on Ubuntu? This comprehensive guide covers everything step by step to run your first Python script in Ubuntu.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/run-python-in-ubuntu\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/run-python-in-ubuntu\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/run-python-in-ubuntu\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/wp-content\\\/uploads\\\/2025\\\/01\\\/Frame-1171279530-3.webp\",\"contentUrl\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/wp-content\\\/uploads\\\/2025\\\/01\\\/Frame-1171279530-3.webp\",\"width\":1200,\"height\":675,\"caption\":\"Run Python in Ubuntu\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/run-python-in-ubuntu\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Run Python in Ubuntu?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/#website\",\"url\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/\",\"name\":\"How To Guides\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/#\\\/schema\\\/person\\\/67e44648c1e60cf8a04bc0bf53c227d7\",\"name\":\"Manvinder Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4373df1ab2b4f1e40b27df8913e40d494a7fd38d128e0ac30e9f7406a4f96e91?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4373df1ab2b4f1e40b27df8913e40d494a7fd38d128e0ac30e9f7406a4f96e91?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4373df1ab2b4f1e40b27df8913e40d494a7fd38d128e0ac30e9f7406a4f96e91?s=96&d=mm&r=g\",\"caption\":\"Manvinder Singh\"},\"description\":\"Manvinder Singh is the Founder and CEO of HostingSeekers, an award-winning go-to-directory for all things hosting. Our team conducts extensive research to filter the top solution providers, enabling visitors to effortlessly pick the one that perfectly suits their needs. We are one of the fastest growing web directories, with 500+ global companies currently listed on our platform.\",\"sameAs\":[\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\"],\"url\":\"https:\\\/\\\/www.hostingseekers.com\\\/how-to\\\/author\\\/manvinder-singh\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Run Python in Ubuntu: Step-by-Step Guide","description":"Want to run Python on Ubuntu? This comprehensive guide covers everything step by step to run your first Python script in Ubuntu.","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:\/\/www.hostingseekers.com\/how-to\/run-python-in-ubuntu\/","og_locale":"en_US","og_type":"article","og_title":"How to Run Python in Ubuntu: Step-by-Step Guide","og_description":"Want to run Python on Ubuntu? This comprehensive guide covers everything step by step to run your first Python script in Ubuntu.","og_url":"https:\/\/www.hostingseekers.com\/how-to\/run-python-in-ubuntu\/","og_site_name":"How To Guides","article_published_time":"2025-01-09T08:47:34+00:00","article_modified_time":"2025-05-16T08:16:32+00:00","og_image":[{"width":1200,"height":675,"url":"https:\/\/www.hostingseekers.com\/how-to\/wp-content\/uploads\/2025\/01\/Frame-1171279530-3.webp","type":"image\/webp"}],"author":"Manvinder Singh","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Manvinder Singh","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hostingseekers.com\/how-to\/run-python-in-ubuntu\/#article","isPartOf":{"@id":"https:\/\/www.hostingseekers.com\/how-to\/run-python-in-ubuntu\/"},"author":{"name":"Manvinder Singh","@id":"https:\/\/www.hostingseekers.com\/how-to\/#\/schema\/person\/67e44648c1e60cf8a04bc0bf53c227d7"},"headline":"How to Run Python in Ubuntu?","datePublished":"2025-01-09T08:47:34+00:00","dateModified":"2025-05-16T08:16:32+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hostingseekers.com\/how-to\/run-python-in-ubuntu\/"},"wordCount":1020,"commentCount":0,"image":{"@id":"https:\/\/www.hostingseekers.com\/how-to\/run-python-in-ubuntu\/#primaryimage"},"thumbnailUrl":"https:\/\/www.hostingseekers.com\/how-to\/wp-content\/uploads\/2025\/01\/Frame-1171279530-3.webp","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.hostingseekers.com\/how-to\/run-python-in-ubuntu\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.hostingseekers.com\/how-to\/run-python-in-ubuntu\/","url":"https:\/\/www.hostingseekers.com\/how-to\/run-python-in-ubuntu\/","name":"How to Run Python in Ubuntu: Step-by-Step Guide","isPartOf":{"@id":"https:\/\/www.hostingseekers.com\/how-to\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hostingseekers.com\/how-to\/run-python-in-ubuntu\/#primaryimage"},"image":{"@id":"https:\/\/www.hostingseekers.com\/how-to\/run-python-in-ubuntu\/#primaryimage"},"thumbnailUrl":"https:\/\/www.hostingseekers.com\/how-to\/wp-content\/uploads\/2025\/01\/Frame-1171279530-3.webp","datePublished":"2025-01-09T08:47:34+00:00","dateModified":"2025-05-16T08:16:32+00:00","author":{"@id":"https:\/\/www.hostingseekers.com\/how-to\/#\/schema\/person\/67e44648c1e60cf8a04bc0bf53c227d7"},"description":"Want to run Python on Ubuntu? This comprehensive guide covers everything step by step to run your first Python script in Ubuntu.","breadcrumb":{"@id":"https:\/\/www.hostingseekers.com\/how-to\/run-python-in-ubuntu\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hostingseekers.com\/how-to\/run-python-in-ubuntu\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hostingseekers.com\/how-to\/run-python-in-ubuntu\/#primaryimage","url":"https:\/\/www.hostingseekers.com\/how-to\/wp-content\/uploads\/2025\/01\/Frame-1171279530-3.webp","contentUrl":"https:\/\/www.hostingseekers.com\/how-to\/wp-content\/uploads\/2025\/01\/Frame-1171279530-3.webp","width":1200,"height":675,"caption":"Run Python in Ubuntu"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hostingseekers.com\/how-to\/run-python-in-ubuntu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hostingseekers.com\/how-to\/"},{"@type":"ListItem","position":2,"name":"How to Run Python in Ubuntu?"}]},{"@type":"WebSite","@id":"https:\/\/www.hostingseekers.com\/how-to\/#website","url":"https:\/\/www.hostingseekers.com\/how-to\/","name":"How To Guides","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hostingseekers.com\/how-to\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.hostingseekers.com\/how-to\/#\/schema\/person\/67e44648c1e60cf8a04bc0bf53c227d7","name":"Manvinder Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4373df1ab2b4f1e40b27df8913e40d494a7fd38d128e0ac30e9f7406a4f96e91?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4373df1ab2b4f1e40b27df8913e40d494a7fd38d128e0ac30e9f7406a4f96e91?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4373df1ab2b4f1e40b27df8913e40d494a7fd38d128e0ac30e9f7406a4f96e91?s=96&d=mm&r=g","caption":"Manvinder Singh"},"description":"Manvinder Singh is the Founder and CEO of HostingSeekers, an award-winning go-to-directory for all things hosting. Our team conducts extensive research to filter the top solution providers, enabling visitors to effortlessly pick the one that perfectly suits their needs. We are one of the fastest growing web directories, with 500+ global companies currently listed on our platform.","sameAs":["https:\/\/www.hostingseekers.com\/how-to"],"url":"https:\/\/www.hostingseekers.com\/how-to\/author\/manvinder-singh\/"}]}},"_links":{"self":[{"href":"https:\/\/www.hostingseekers.com\/how-to\/wp-json\/wp\/v2\/posts\/1164","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hostingseekers.com\/how-to\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hostingseekers.com\/how-to\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hostingseekers.com\/how-to\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hostingseekers.com\/how-to\/wp-json\/wp\/v2\/comments?post=1164"}],"version-history":[{"count":47,"href":"https:\/\/www.hostingseekers.com\/how-to\/wp-json\/wp\/v2\/posts\/1164\/revisions"}],"predecessor-version":[{"id":1509,"href":"https:\/\/www.hostingseekers.com\/how-to\/wp-json\/wp\/v2\/posts\/1164\/revisions\/1509"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.hostingseekers.com\/how-to\/wp-json\/wp\/v2\/media\/1209"}],"wp:attachment":[{"href":"https:\/\/www.hostingseekers.com\/how-to\/wp-json\/wp\/v2\/media?parent=1164"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hostingseekers.com\/how-to\/wp-json\/wp\/v2\/categories?post=1164"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hostingseekers.com\/how-to\/wp-json\/wp\/v2\/tags?post=1164"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}