{"id":823,"date":"2018-11-13T16:00:54","date_gmt":"2018-11-13T16:00:54","guid":{"rendered":"https:\/\/draculaservers.com\/tutorials\/?p=823"},"modified":"2021-11-14T22:36:23","modified_gmt":"2021-11-14T22:36:23","slug":"install-python-3-ubuntu-18","status":"publish","type":"post","link":"https:\/\/draculaservers.com\/tutorials\/install-python-3-ubuntu-18\/","title":{"rendered":"How to Install the Latest Python 3 on Ubuntu 18.04 Bionic Beaver"},"content":{"rendered":"<p>In this tutorial we&#8217;ll install the latest Python 3 on an Ubuntu 18.04 machine.<\/p>\n<p>Python is one of the fastest growing programming languages at the time of writing. It&#8217;s easy to learn, fast, and versatile. You can do almost anything with it, and it&#8217;s the most popular for machine learning.<\/p>\n<p>Some of the most popular sites and applications are built using Python &#8211; Google, Youtube, Instagram, Pinterest and Spotify to name a few.<\/p>\n<p>We&#8217;ll install the latest Python 3, on our machine, using two methods. One will be to install the pre-compiled version from the repositories, and the second will be to compile the latest version ourselves, from the source code.<\/p>\n<blockquote class=\"note-blue\"><p><small><strong>Sidenote:<\/strong> Should you be considering getting a new laptop aimed primarily at coding and development, then we recommend this <a href=\"https:\/\/justcreative.com\/best-laptops-for-programming-coding-development\/\">round-up of some of the best laptops for coding\/dev<\/a>. They considered the main factors we typically look for when choosing a laptop for this purpose, and compiled a list that hopes to address most coder&#8217;s needs.<\/small><\/p><\/blockquote>\n\n<h2 id=\"method-1-install-the-latest-python-3-from-repositories\">Method #1 \u2013 Install the Latest Python 3 from Repositories<\/h2>\n<p>This method is the easier way to install the latest version of Python.<\/p>\n<h3 id=\"step-1-prerequisites\">Step 1 \u2013 Prerequisites<\/h3>\n<p>Before installing, first let&#8217;s perform all updates, and then check the version currently installed on your machine. To do this run one of the following commands:<\/p>\n<pre><code>$ python3 -V<\/code><\/pre>\n<pre><code>$ python3 --version<\/code><\/pre>\n<p>To check if there are multiple versions installed, run the following command to view all versions:<\/p>\n<pre><code>$ apt list --installed | grep python<\/code><\/pre>\n<p>If you want to install the latest version of Python 3 on your machine, run the following command:<\/p>\n<h3 id=\"step-2-install-the-python-3-x\">Step 2 \u2013 Install the Python 3.x<\/h3>\n<pre><code>$ sudo apt-get install python3<\/code><\/pre>\n<p>If it&#8217;s already installed, then you can upgrade to the latest version by running:<\/p>\n<pre><code>$ sudo apt-get upgrade python3<\/code><\/pre>\n<h2 id=\"method-2-install-the-latest-python-3-from-source-code\">Method #2 \u2013 Install the Latest Python 3 from Source Code<\/h2>\n<p>This method is more complicated and it takes more time. The advantage to installing Python 3 this way is that you control the installation and it can be more secure at times, depending where the package is downloaded from.<\/p>\n<h3 id=\"step-1-prerequisites-2\">Step 1 \u2013 Prerequisites<\/h3>\n<p>First off, let&#8217;s update our package index.<\/p>\n<pre><code>$ sudo apt-get update<\/code><\/pre>\n<p>For this method, we&#8217;ll need the tools and libraries to build the source for Python. To install them, run the following commands:<\/p>\n<pre><code>sudo apt-get install build-essential\nsudo apt-get install libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev<\/code><\/pre>\n<h3 id=\"step-2-download-python-3-x\">Step 2 \u2013 Download Python 3.x<\/h3>\n<p>Now we&#8217;ll need to download the latest version onto our machine. To do this, visit the official Python website, check the Downloads section and click to download Source code. There you&#8217;ll see something like <a href=\"https:\/\/www.python.org\/downloads\/release\/python-371\/\" target=\"_blank\" rel=\"noopener\">Latest Python 3 Release &#8211; Python 3.x.x<\/a>. Follow that link and scroll down to Files. What we want is the link to &#8220;Gzipped source tarball&#8221;.<\/p>\n<p>At the time of writing, this is the source tarball download link `https:\/\/www.python.org\/ftp\/python\/3.7.1\/Python-3.7.1.tgz`. Now let&#8217;s download it onto our machine, in `\/usr\/src`:<\/p>\n<pre><code>cd \/usr\/src\nwget https:\/\/www.python.org\/ftp\/python\/3.7.1\/Python-3.7.1.tgz<\/code><\/pre>\n<p>Next, unzip the tarball:<\/p>\n<pre><code>$ tar xzf Python-3.7.1.tgz<\/code><\/pre>\n<h3 id=\"step-3-install-python3-x\">Step 3 \u2014 Install Python3.x<\/h3>\n<p>Now let&#8217;s configure the build and install the build. This will take a while because it will run tests that will optimize the binary to run faster.<\/p>\n<pre><code>cd Python-3.7.1\n.\/configure --enable-optimizations\nmake\nmake install<\/code><\/pre>\n<p>After it&#8217;s finished, then Python 3 should be installed.<\/p>\n<h2 id=\"conclusion\">Conclusion<\/h2>\n<p>Now you should have the latest version of Python 3 up and running. If you&#8217;ve encountered any issue installing it, then don&#8217;t hesitate to let us know in the comments or contact us.<\/p>\n<p>If you&#8217;re looking for a reliable high performance Linux VPS to run your scripts, then check out our <a href=\"https:\/\/draculaservers.com\/kvm.php\" target=\"_blank\" rel=\"noopener\">Linux KVM Plans<\/a>. Our smallest plan provides you with 2GB RAM, 10GB SSD for only $5.99\/mo.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial we&#8217;ll install the latest Python 3 on an Ubuntu 18.04 machine. Python is one of the fastest growing programming languages at the time of writing. It&#8217;s easy to learn, fast, and versatile. You can do almost anything with it, and it&#8217;s the most popular for machine learning. Some of the most popular [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":832,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,41,22],"tags":[],"class_list":["post-823","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux-basics","category-python","category-ubuntu"],"blocksy_meta":{"styles_descriptor":{"styles":{"desktop":"","tablet":"","mobile":""},"google_fonts":[],"version":6}},"featured_image_urls_v2":{"full":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2018\/11\/PyUbuntu18.04.png",1024,512,false],"thumbnail":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2018\/11\/PyUbuntu18.04-150x150.png",150,150,true],"medium":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2018\/11\/PyUbuntu18.04-300x150.png",300,150,true],"medium_large":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2018\/11\/PyUbuntu18.04-768x384.png",768,384,true],"large":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2018\/11\/PyUbuntu18.04.png",1024,512,false],"1536x1536":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2018\/11\/PyUbuntu18.04.png",1024,512,false],"2048x2048":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2018\/11\/PyUbuntu18.04.png",1024,512,false],"pk-small":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2018\/11\/PyUbuntu18.04-80x80.png",80,80,true],"pk-thumbnail":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2018\/11\/PyUbuntu18.04-300x225.png",300,225,true]},"post_excerpt_stackable_v2":"<p>In this tutorial we&#8217;ll install the latest Python 3 on an Ubuntu 18.04 machine. Python is one of the fastest growing programming languages at the time of writing. It&#8217;s easy to learn, fast, and versatile. You can do almost anything with it, and it&#8217;s the most popular for machine learning. Some of the most popular sites and applications are built using Python &#8211; Google, Youtube, Instagram, Pinterest and Spotify to name a few. We&#8217;ll install the latest Python 3, on our machine, using two methods. One will be to install the pre-compiled version from the repositories, and the second will&hellip;<\/p>\n","category_list_v2":"<a href=\"https:\/\/draculaservers.com\/tutorials\/category\/linux-basics\/\" rel=\"category tag\">Linux Basics<\/a>, <a href=\"https:\/\/draculaservers.com\/tutorials\/category\/python\/\" rel=\"category tag\">Python<\/a>, <a href=\"https:\/\/draculaservers.com\/tutorials\/category\/ubuntu\/\" rel=\"category tag\">Ubuntu<\/a>","author_info_v2":{"name":"Vlad","url":"https:\/\/draculaservers.com\/tutorials\/author\/vlad\/"},"comments_num_v2":"0 comments","yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install the Latest Python 3 on Ubuntu 18.04 Bionic Beaver<\/title>\n<meta name=\"description\" content=\"Step by step tutorial on how to install the latest Python 3 versions on Ubuntu 18.04 Bionic Beaver, via repositories and by compiling the source code.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/draculaservers.com\/tutorials\/install-python-3-ubuntu-18\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install the Latest Python 3 on Ubuntu 18.04 Bionic Beaver\" \/>\n<meta property=\"og:description\" content=\"Step by step tutorial on how to install the latest Python 3 versions on Ubuntu 18.04 Bionic Beaver, via repositories and by compiling the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/draculaservers.com\/tutorials\/install-python-3-ubuntu-18\/\" \/>\n<meta property=\"og:site_name\" content=\"Dracula Servers Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2018-11-13T16:00:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-14T22:36:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2018\/11\/PyUbuntu18.04.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"512\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Vlad\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Vlad\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-python-3-ubuntu-18\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-python-3-ubuntu-18\\\/\"},\"author\":{\"name\":\"Vlad\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/person\\\/931f7fa8b2126ace6edfb82775e0ec0e\"},\"headline\":\"How to Install the Latest Python 3 on Ubuntu 18.04 Bionic Beaver\",\"datePublished\":\"2018-11-13T16:00:54+00:00\",\"dateModified\":\"2021-11-14T22:36:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-python-3-ubuntu-18\\\/\"},\"wordCount\":568,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-python-3-ubuntu-18\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2018\\\/11\\\/PyUbuntu18.04.png\",\"articleSection\":[\"Linux Basics\",\"Python\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-python-3-ubuntu-18\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-python-3-ubuntu-18\\\/\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-python-3-ubuntu-18\\\/\",\"name\":\"How to Install the Latest Python 3 on Ubuntu 18.04 Bionic Beaver\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-python-3-ubuntu-18\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-python-3-ubuntu-18\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2018\\\/11\\\/PyUbuntu18.04.png\",\"datePublished\":\"2018-11-13T16:00:54+00:00\",\"dateModified\":\"2021-11-14T22:36:23+00:00\",\"description\":\"Step by step tutorial on how to install the latest Python 3 versions on Ubuntu 18.04 Bionic Beaver, via repositories and by compiling the source code.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-python-3-ubuntu-18\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-python-3-ubuntu-18\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-python-3-ubuntu-18\\\/#primaryimage\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2018\\\/11\\\/PyUbuntu18.04.png\",\"contentUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2018\\\/11\\\/PyUbuntu18.04.png\",\"width\":1024,\"height\":512,\"caption\":\"python_ubuntu_18_featured\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-python-3-ubuntu-18\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install the Latest Python 3 on Ubuntu 18.04 Bionic Beaver\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#website\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/\",\"name\":\"Dracula Servers Tutorials\",\"description\":\"Dedicated Servers\",\"publisher\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#organization\",\"name\":\"Dracula Servers\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/dracula_full_logo_smaller.png\",\"contentUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/dracula_full_logo_smaller.png\",\"width\":1625,\"height\":200,\"caption\":\"Dracula Servers\"},\"image\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/person\\\/931f7fa8b2126ace6edfb82775e0ec0e\",\"name\":\"Vlad\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g\",\"caption\":\"Vlad\"},\"description\":\"Tech Support\",\"sameAs\":[\"https:\\\/\\\/draculaservers.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install the Latest Python 3 on Ubuntu 18.04 Bionic Beaver","description":"Step by step tutorial on how to install the latest Python 3 versions on Ubuntu 18.04 Bionic Beaver, via repositories and by compiling the source code.","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:\/\/draculaservers.com\/tutorials\/install-python-3-ubuntu-18\/","og_locale":"en_US","og_type":"article","og_title":"How to Install the Latest Python 3 on Ubuntu 18.04 Bionic Beaver","og_description":"Step by step tutorial on how to install the latest Python 3 versions on Ubuntu 18.04 Bionic Beaver, via repositories and by compiling the source code.","og_url":"https:\/\/draculaservers.com\/tutorials\/install-python-3-ubuntu-18\/","og_site_name":"Dracula Servers Tutorials","article_published_time":"2018-11-13T16:00:54+00:00","article_modified_time":"2021-11-14T22:36:23+00:00","og_image":[{"width":1024,"height":512,"url":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2018\/11\/PyUbuntu18.04.png","type":"image\/png"}],"author":"Vlad","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Vlad","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/draculaservers.com\/tutorials\/install-python-3-ubuntu-18\/#article","isPartOf":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-python-3-ubuntu-18\/"},"author":{"name":"Vlad","@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/person\/931f7fa8b2126ace6edfb82775e0ec0e"},"headline":"How to Install the Latest Python 3 on Ubuntu 18.04 Bionic Beaver","datePublished":"2018-11-13T16:00:54+00:00","dateModified":"2021-11-14T22:36:23+00:00","mainEntityOfPage":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-python-3-ubuntu-18\/"},"wordCount":568,"commentCount":0,"publisher":{"@id":"https:\/\/draculaservers.com\/tutorials\/#organization"},"image":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-python-3-ubuntu-18\/#primaryimage"},"thumbnailUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2018\/11\/PyUbuntu18.04.png","articleSection":["Linux Basics","Python","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/draculaservers.com\/tutorials\/install-python-3-ubuntu-18\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/draculaservers.com\/tutorials\/install-python-3-ubuntu-18\/","url":"https:\/\/draculaservers.com\/tutorials\/install-python-3-ubuntu-18\/","name":"How to Install the Latest Python 3 on Ubuntu 18.04 Bionic Beaver","isPartOf":{"@id":"https:\/\/draculaservers.com\/tutorials\/#website"},"primaryImageOfPage":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-python-3-ubuntu-18\/#primaryimage"},"image":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-python-3-ubuntu-18\/#primaryimage"},"thumbnailUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2018\/11\/PyUbuntu18.04.png","datePublished":"2018-11-13T16:00:54+00:00","dateModified":"2021-11-14T22:36:23+00:00","description":"Step by step tutorial on how to install the latest Python 3 versions on Ubuntu 18.04 Bionic Beaver, via repositories and by compiling the source code.","breadcrumb":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-python-3-ubuntu-18\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/draculaservers.com\/tutorials\/install-python-3-ubuntu-18\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/draculaservers.com\/tutorials\/install-python-3-ubuntu-18\/#primaryimage","url":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2018\/11\/PyUbuntu18.04.png","contentUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2018\/11\/PyUbuntu18.04.png","width":1024,"height":512,"caption":"python_ubuntu_18_featured"},{"@type":"BreadcrumbList","@id":"https:\/\/draculaservers.com\/tutorials\/install-python-3-ubuntu-18\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/draculaservers.com\/tutorials\/"},{"@type":"ListItem","position":2,"name":"How to Install the Latest Python 3 on Ubuntu 18.04 Bionic Beaver"}]},{"@type":"WebSite","@id":"https:\/\/draculaservers.com\/tutorials\/#website","url":"https:\/\/draculaservers.com\/tutorials\/","name":"Dracula Servers Tutorials","description":"Dedicated Servers","publisher":{"@id":"https:\/\/draculaservers.com\/tutorials\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/draculaservers.com\/tutorials\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/draculaservers.com\/tutorials\/#organization","name":"Dracula Servers","url":"https:\/\/draculaservers.com\/tutorials\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/logo\/image\/","url":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/06\/dracula_full_logo_smaller.png","contentUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/06\/dracula_full_logo_smaller.png","width":1625,"height":200,"caption":"Dracula Servers"},"image":{"@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/person\/931f7fa8b2126ace6edfb82775e0ec0e","name":"Vlad","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g","caption":"Vlad"},"description":"Tech Support","sameAs":["https:\/\/draculaservers.com"]}]}},"_links":{"self":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts\/823","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/comments?post=823"}],"version-history":[{"count":2,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts\/823\/revisions"}],"predecessor-version":[{"id":2221,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts\/823\/revisions\/2221"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/media\/832"}],"wp:attachment":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/media?parent=823"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/categories?post=823"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/tags?post=823"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}