{"id":12571,"date":"2022-09-03T12:12:00","date_gmt":"2022-09-03T16:12:00","guid":{"rendered":"http:\/\/local.brightwhiz\/?p=12571"},"modified":"2022-09-03T12:12:06","modified_gmt":"2022-09-03T16:12:06","slug":"how-to-install-python-3-10-on-ubuntu-22-04","status":"publish","type":"post","link":"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/","title":{"rendered":"How to Install Python 3.10 on Ubuntu 22.04"},"content":{"rendered":"\n

This guide will show you how to install Python 3.10 on Ubuntu 22.04 or the latest Debian based Linux systems.<\/p>\n\n\n\n

Getting You System Ready<\/h2>\n\n\n\n

First off, you will need to run a quick update to ensure your system is up-to-date with the required packages.<\/p>\n\n\n\n

$ sudo apt update && sudo apt upgrade -y<\/code><\/pre>\n\n\n\n

Method 1: Install Python 3.10 on Ubuntu 22.04 Using the APT Utility<\/h2>\n\n\n\n

This is probably the easier method of installing the programming tools. This method makes it easy to receive continued updates, bug fixes, and security patches. With this option we need to install the relevant PPAs.<\/p>\n\n\n\n

Let’s first install the required dependency before adding custom PPAs.<\/p>\n\n\n\n

$ sudo apt install software-properties-common -y<\/code><\/pre>\n\n\n\n

Proceed to add the deadsnakes PPA to the APT package manager sources list using the command below.<\/p>\n\n\n\n

$ sudo add-apt-repository ppa:deadsnakes\/ppa<\/code><\/pre>\n\n\n\n

Once done we can go ahead and install the packages using the following command:<\/p>\n\n\n\n

$ sudo apt install python3.10<\/code><\/pre>\n\n\n\n

Verify your Python 3.10 installation by checking its version:<\/p>\n\n\n\n

$ python3 -V<\/code><\/pre>\n\n\n\n
Output\n3.10.6<\/code><\/pre>\n\n\n\n

Method 2: Install Python 3.10 on Ubuntu 22.04 from Source<\/h2>\n\n\n\n

The other alternative to installing any version of Python on Ubuntu systems is from the Source code. This is our recommended way even though it requires more steps than the apt method above.<\/p>\n\n\n\n

As always, make sure your system is up-to-date with the latest packages.<\/p>\n\n\n\n

$ sudo apt update && sudo apt upgrade -y<\/code><\/pre>\n\n\n\n

Install the required prerequisite packages for the compilation of the Python<\/a> source code using this command.<\/p>\n\n\n\n

$ sudo apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev libsqlite3-dev wget libbz2-dev<\/code><\/pre>\n\n\n\n

Now you need to visit the Python Downloads page<\/a> and copy the link address of the Python 3.10.04 gzipped source tarball. Use the wget<\/code> command to download it:<\/p>\n\n\n\n

Visit the official Python site and download the latest stable release source package (Python 3.10.6).<\/p>\n\n\n\n

$ wget https:\/\/www.python.org\/ftp\/python\/3.10.6\/Python-3.10.6.tgz<\/code><\/pre>\n\n\n\n

Next, extract the archive file on your system.<\/p>\n\n\n\n

$ tar xzf Python-3.10.6.tgz<\/code><\/pre>\n\n\n\n

Navigate to the extracted directory:<\/p>\n\n\n\n

$ cd Python-3.10.6\/<\/code><\/pre>\n\n\n\n

configure the Python source code before compiling it on your system.<\/p>\n\n\n\n

$ .\/configure --enable-optimizations<\/code><\/pre>\n\n\n\n

Finally, run the make command to compile and install Python 3.10 on Ubuntu<\/a>. Optionally you can opt to use more CPU cores to fasted the build time. Run the following command to confirm the number of cores on your system.<\/p>\n\n\n\n

$ nproc <\/code><\/pre>\n\n\n\n
Output\n4<\/code><\/pre>\n\n\n\n

Run make to build Python 3.10 with the desired number of cores with the command below where -j 2 is the number of cores:<\/p>\n\n\n\n

$ make -j 2<\/code><\/pre>\n\n\n\n
$ sudo make altinstall<\/code><\/pre>\n\n\n\n

The altinstall use here prevents the compiler from overriding the default Python versions.<\/p>\n\n\n\n

You can confirm the installation by checking the Python version using this command.<\/p>\n\n\n\n

$ python3 --version<\/code><\/pre>\n\n\n\n
Output\nPython 3.10.6<\/code><\/pre>\n\n\n\n

That’s It<\/h2>\n\n\n\n

You have now learned how to compile and install Python 3.10 on Ubuntu 22.04 systems using source code. Happy coding!<\/p>\n","protected":false},"excerpt":{"rendered":"

This guide will show you how to install Python 3.10 on Ubuntu 22.04 or the latest Debian based Linux systems. Getting You System Ready First off, you will need to…<\/p>\n","protected":false},"author":1,"featured_media":12572,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,9,25,27,16,18],"tags":[350,424,471,475,544,591,598],"yoast_head":"\nHow to Install Python 3.10 on Ubuntu 22.04<\/title>\n<meta name=\"description\" content=\"Reading this will show you how to install Python 3.10 on Ubuntu 22.04 either from the apt repositories or from source\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Python 3.10 on Ubuntu 22.04\" \/>\n<meta property=\"og:description\" content=\"Reading this will show you how to install Python 3.10 on Ubuntu 22.04 either from the apt repositories or from source\" \/>\n<meta property=\"og:url\" content=\"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/\" \/>\n<meta property=\"og:site_name\" content=\"Brightwhiz.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/brightwhiz\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-03T16:12:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-09-03T16:12:06+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/09\/Install-Python-3.10-on-Ubuntu-22.04.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Michael Bright\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:site\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Michael Bright\" \/>\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\":\"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/\"},\"author\":{\"name\":\"Michael Bright\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\"},\"headline\":\"How to Install Python 3.10 on Ubuntu 22.04\",\"datePublished\":\"2022-09-03T16:12:00+00:00\",\"dateModified\":\"2022-09-03T16:12:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/\"},\"wordCount\":382,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/09\/Install-Python-3.10-on-Ubuntu-22.04.jpg\",\"keywords\":[\"Libraries\",\"Open Source\",\"Programming\",\"Python\",\"Software development\",\"Tools\",\"Ubuntu\"],\"articleSection\":[\"Articles\",\"How To\",\"Libraries\",\"Programming\",\"Technology\",\"Tools\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/\",\"url\":\"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/\",\"name\":\"How to Install Python 3.10 on Ubuntu 22.04\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/09\/Install-Python-3.10-on-Ubuntu-22.04.jpg\",\"datePublished\":\"2022-09-03T16:12:00+00:00\",\"dateModified\":\"2022-09-03T16:12:06+00:00\",\"description\":\"Reading this will show you how to install Python 3.10 on Ubuntu 22.04 either from the apt repositories or from source\",\"breadcrumb\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/#primaryimage\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/09\/Install-Python-3.10-on-Ubuntu-22.04.jpg\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/09\/Install-Python-3.10-on-Ubuntu-22.04.jpg\",\"width\":1280,\"height\":680,\"caption\":\"Install Python 3.10 on Ubuntu 22.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/local.brightwhiz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Python 3.10 on Ubuntu 22.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/local.brightwhiz\/#website\",\"url\":\"http:\/\/local.brightwhiz\/\",\"name\":\"Brightwhiz.com\",\"description\":\"Best Tech guides, Tutorials, and News\",\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/local.brightwhiz\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/local.brightwhiz\/#organization\",\"name\":\"Brightwhiz\",\"url\":\"http:\/\/local.brightwhiz\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"width\":706,\"height\":135,\"caption\":\"Brightwhiz\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/brightwhiz\/\",\"https:\/\/twitter.com\/brightwhizmag\",\"https:\/\/instagram.com\/bright_whiz\/\",\"https:\/\/www.pinterest.com\/sobbayi\/\",\"https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\",\"name\":\"Michael Bright\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"contentUrl\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"caption\":\"Michael Bright\"},\"sameAs\":[\"https:\/\/sobbayi.com\"],\"url\":\"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Python 3.10 on Ubuntu 22.04","description":"Reading this will show you how to install Python 3.10 on Ubuntu 22.04 either from the apt repositories or from source","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":"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Python 3.10 on Ubuntu 22.04","og_description":"Reading this will show you how to install Python 3.10 on Ubuntu 22.04 either from the apt repositories or from source","og_url":"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/","og_site_name":"Brightwhiz.com","article_publisher":"https:\/\/www.facebook.com\/brightwhiz\/","article_published_time":"2022-09-03T16:12:00+00:00","article_modified_time":"2022-09-03T16:12:06+00:00","og_image":[{"width":1280,"height":680,"url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/09\/Install-Python-3.10-on-Ubuntu-22.04.jpg","type":"image\/jpeg"}],"author":"Michael Bright","twitter_card":"summary_large_image","twitter_creator":"@brightwhizmag","twitter_site":"@brightwhizmag","twitter_misc":{"Written by":"Michael Bright","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/#article","isPartOf":{"@id":"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/"},"author":{"name":"Michael Bright","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32"},"headline":"How to Install Python 3.10 on Ubuntu 22.04","datePublished":"2022-09-03T16:12:00+00:00","dateModified":"2022-09-03T16:12:06+00:00","mainEntityOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/"},"wordCount":382,"commentCount":0,"publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/09\/Install-Python-3.10-on-Ubuntu-22.04.jpg","keywords":["Libraries","Open Source","Programming","Python","Software development","Tools","Ubuntu"],"articleSection":["Articles","How To","Libraries","Programming","Technology","Tools"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/#respond"]}]},{"@type":"WebPage","@id":"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/","url":"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/","name":"How to Install Python 3.10 on Ubuntu 22.04","isPartOf":{"@id":"http:\/\/local.brightwhiz\/#website"},"primaryImageOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/#primaryimage"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/09\/Install-Python-3.10-on-Ubuntu-22.04.jpg","datePublished":"2022-09-03T16:12:00+00:00","dateModified":"2022-09-03T16:12:06+00:00","description":"Reading this will show you how to install Python 3.10 on Ubuntu 22.04 either from the apt repositories or from source","breadcrumb":{"@id":"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/#primaryimage","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/09\/Install-Python-3.10-on-Ubuntu-22.04.jpg","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/09\/Install-Python-3.10-on-Ubuntu-22.04.jpg","width":1280,"height":680,"caption":"Install Python 3.10 on Ubuntu 22.04"},{"@type":"BreadcrumbList","@id":"http:\/\/local.brightwhiz\/how-to-install-python-3-10-on-ubuntu-22-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/local.brightwhiz\/"},{"@type":"ListItem","position":2,"name":"How to Install Python 3.10 on Ubuntu 22.04"}]},{"@type":"WebSite","@id":"http:\/\/local.brightwhiz\/#website","url":"http:\/\/local.brightwhiz\/","name":"Brightwhiz.com","description":"Best Tech guides, Tutorials, and News","publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/local.brightwhiz\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/local.brightwhiz\/#organization","name":"Brightwhiz","url":"http:\/\/local.brightwhiz\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","width":706,"height":135,"caption":"Brightwhiz"},"image":{"@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/brightwhiz\/","https:\/\/twitter.com\/brightwhizmag","https:\/\/instagram.com\/bright_whiz\/","https:\/\/www.pinterest.com\/sobbayi\/","https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ"]},{"@type":"Person","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32","name":"Michael Bright","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/","url":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","contentUrl":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","caption":"Michael Bright"},"sameAs":["https:\/\/sobbayi.com"],"url":"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/"}]}},"_links":{"self":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/12571"}],"collection":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/comments?post=12571"}],"version-history":[{"count":0,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/12571\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media\/12572"}],"wp:attachment":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media?parent=12571"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/categories?post=12571"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/tags?post=12571"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}