{"id":7408,"date":"2021-03-06T14:30:10","date_gmt":"2021-03-06T09:30:10","guid":{"rendered":"https:\/\/ahmadawais.com\/?p=7408"},"modified":"2021-03-06T14:31:20","modified_gmt":"2021-03-06T09:31:20","slug":"how-to-set-python-default-version-to-3-on-macos","status":"publish","type":"post","link":"https:\/\/ahmadawais.com\/how-to-set-python-default-version-to-3-on-macos\/","title":{"rendered":"QuickTip: How to set Python default version to 3.x on macOS?"},"content":{"rendered":"<p>If you are a macOS user like me, you know the default version of Python that comes by default with your mac is version 2.X. Most of the time, you&#8217;ll end up needing Python 3.X \u2014 which I&#8217;m told you can run using the <code>python3<\/code> command. But let&#8217;s set the default version to Python 3 \u2014 so you can run it using the default <code>python<\/code> command.<\/p>\n<h2 id=\"step-1-install-homebrew\">Step #1: Install Homebrew<a href=\"#step-1-install-homebrew\" class=\"heading-link\">#<\/a><\/h2>\n<p><a href=\"https:\/\/brew.sh\/\">Homebrew<\/a> is an excellent package manager for macOS. Install it if you haven&#8217;t already by running the following command:<\/p>\n<pre class=\"lang:bash\">\/bin\/bash -c \"$(curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/HEAD\/install.sh)\"<\/pre>\n<h2 id=\"step-2-install-python-with-brew\">Step #2: Install Python with brew<a href=\"#step-2-install-python-with-brew\" class=\"heading-link\">#<\/a><\/h2>\n<p>The simplest way to get this working is to install Python via brew. Run the following command in your terminal to install Python.<\/p>\n<pre class=\"lang:bash\">brew install python<\/pre>\n<p>It will install Python 3.<\/p>\n<h2 id=\"step-3-symlink-python\">Step #3: Symlink Python<a href=\"#step-3-symlink-python\" class=\"heading-link\">#<\/a><\/h2>\n<p>Now let&#8217;s create the right set of symlinks for Python 3.X so that it becomes the default <code>python<\/code> command in your macOS. Run the following command:<\/p>\n<pre class=\"lang:bash\">ls -l \/usr\/local\/bin\/python*<\/pre>\n<p>This should output something like the following:<\/p>\n<pre class=\"lang:bash\">\/usr\/local\/bin\/python -&gt; \/usr\/local\/bin\/python3\r\n\/usr\/local\/bin\/python3 -&gt; ..\/Cellar\/python@3.9\/3.9.2_1\/bin\/python3\r\n\/usr\/local\/bin\/python3-config -&gt; ..\/Cellar\/python@3.9\/3.9.2_1\/bin\/python3-config\r\n\/usr\/local\/bin\/python3.9 -&gt; ..\/Cellar\/python@3.9\/3.9.2_1\/bin\/python3.9\r\n\/usr\/local\/bin\/python3.9-config -&gt; ..\/Cellar\/python@3.9\/3.9.2_1\/bin\/python3.9-config<\/pre>\n<p>Take a look at the first line. It shows default <code>python<\/code> being symlinked to the brew installed <code>python3<\/code>. If you don&#8217;t see that in the output, then we can be sure to set it as the default <code>python<\/code> symlink run the following:<\/p>\n<pre class=\"lang:bash\">ln -s -f \/usr\/local\/bin\/python3 \/usr\/local\/bin\/python<\/pre>\n<div class=\"codecopy codecopy-small\">And we are all set.<\/div>\n<div>\n<h2 id=\"step-4-verify-python-3-x-install\">Step #4: Verify <code>python<\/code> 3.X install<a href=\"#step-4-verify-python-3-x-install\" class=\"heading-link\">#<\/a><\/h2>\n<p>To make sure we did everything right, let&#8217;s reload the shell\/terminal \u2014 you can do that manually or by running the following command to trigger a reload:<\/p>\n<pre class=\"lang:bash\">exec $SHELL -l<\/pre>\n<div class=\"alert gray\"><strong>Tip<\/strong>: I have set an alias for this command to reload the shell, <code>alias reload=\"exec $SHELL -l\"<\/code> which comes in handy all the time. <\/div>\n<p>Now run the following:<\/p>\n<pre class=\"lang:bash\">which python<\/pre>\n<p>and you should see this output:<\/p>\n<pre class=\"lang:bash\">\/usr\/local\/bin\/python<\/pre>\n<p>\u2026 and finally, you can run the version check command:<\/p>\n<pre class=\"lang:bash\">python --version<\/pre>\n<p>All this should confirm Python 3.X install, as it outputs <code>Python 3.9.2<\/code> for me. Easy peasy lemon squeezy. Use your code for good.<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>If you are a macOS user like me, you know the default version of Python that comes by default with your mac is version 2.X. Most of the time, you&#8217;ll end up needing Python 3.X \u2014 which I&#8217;m told you can run using the python3 command. But let&#8217;s set the default version to Python 3 \u2014 so you can run it using the default python command. Step #1: Install Homebrew# Homebrew is an excellent package manager for macOS. Install it if you haven&#8217;t already by running the following command: \/bin\/bash -c &#8220;$(curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/HEAD\/install.sh)&#8221; Step #2: Install Python with brew# [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"webmentions_disabled_pings":false,"webmentions_disabled":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[9],"tags":[],"class_list":["post-7408","post","type-post","status-publish","format-standard","hentry","category-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>QuickTip: How to set Python default version to 3.x on macOS?<\/title>\n<meta name=\"description\" content=\"If you are a macOS user like me, you know the default version of Python that comes by default with your mac is version 2.X. Most of the time, you&#039;ll end\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ahmadawais.com\/how-to-set-python-default-version-to-3-on-macos\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"QuickTip: How to set Python default version to 3.x on macOS?\" \/>\n<meta property=\"og:description\" content=\"If you are a macOS user like me, you know the default version of Python that comes by default with your mac is version 2.X. Most of the time, you&#039;ll end\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ahmadawais.com\/how-to-set-python-default-version-to-3-on-macos\/\" \/>\n<meta property=\"og:site_name\" content=\"Ahmad Awais\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/AhmadAwais\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/AhmadAwais\" \/>\n<meta property=\"article:published_time\" content=\"2021-03-06T09:30:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-03-06T09:31:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/ahmadawais.com\/wp-content\/uploads\/2024\/08\/ahmad-awais.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1440\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Ahmad Awais\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@MrAhmadAwais\" \/>\n<meta name=\"twitter:site\" content=\"@MrAhmadAwais\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ahmad Awais\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/how-to-set-python-default-version-to-3-on-macos\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/how-to-set-python-default-version-to-3-on-macos\\\/\"},\"author\":{\"name\":\"Ahmad Awais\",\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/#\\\/schema\\\/person\\\/1d1b9504182dca2315cf039fb4ebb85b\"},\"headline\":\"QuickTip: How to set Python default version to 3.x on macOS?\",\"datePublished\":\"2021-03-06T09:30:10+00:00\",\"dateModified\":\"2021-03-06T09:31:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/how-to-set-python-default-version-to-3-on-macos\\\/\"},\"wordCount\":309,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/#\\\/schema\\\/person\\\/1d1b9504182dca2315cf039fb4ebb85b\"},\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/ahmadawais.com\\\/how-to-set-python-default-version-to-3-on-macos\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/how-to-set-python-default-version-to-3-on-macos\\\/\",\"url\":\"https:\\\/\\\/ahmadawais.com\\\/how-to-set-python-default-version-to-3-on-macos\\\/\",\"name\":\"QuickTip: How to set Python default version to 3.x on macOS?\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/#website\"},\"datePublished\":\"2021-03-06T09:30:10+00:00\",\"dateModified\":\"2021-03-06T09:31:20+00:00\",\"description\":\"If you are a macOS user like me, you know the default version of Python that comes by default with your mac is version 2.X. Most of the time, you'll end\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/how-to-set-python-default-version-to-3-on-macos\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/ahmadawais.com\\\/how-to-set-python-default-version-to-3-on-macos\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/how-to-set-python-default-version-to-3-on-macos\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/ahmadawais.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"QuickTip: How to set Python default version to 3.x on macOS?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/#website\",\"url\":\"https:\\\/\\\/ahmadawais.com\\\/\",\"name\":\"Ahmad Awais\",\"description\":\"Founder &amp; CEO of CommandCode.ai f\\\/k\\\/a Langbase | Google Developers Advisory Board (gDAB) founding member\",\"publisher\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/#\\\/schema\\\/person\\\/1d1b9504182dca2315cf039fb4ebb85b\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/ahmadawais.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/#\\\/schema\\\/person\\\/1d1b9504182dca2315cf039fb4ebb85b\",\"name\":\"Ahmad Awais\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/Ahmad-Awais-face.jpg\",\"url\":\"https:\\\/\\\/ahmadawais.com\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/Ahmad-Awais-face.jpg\",\"contentUrl\":\"https:\\\/\\\/ahmadawais.com\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/Ahmad-Awais-face.jpg\",\"width\":2299,\"height\":1705,\"caption\":\"Ahmad Awais\"},\"logo\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/Ahmad-Awais-face.jpg\"},\"description\":\"Founder & CEO of \u2318 Command Code coding agent with taste. Founded Langbase.com, AI cloud to build, deploy, and scale AI agents with tools & memory \u00b7 Creator of Command.new. \\\"Awais is an awesome example for developers\\\" \u2014 Satya Nadella, CEO of Microsoft. NASA Mars Ingenuity Helicopter mission code contributor 8th GitHub Stars Award recipient with 5x GitHub Stars Award (Listed as GitHub's #1 JavaScript trending developer). Google Developers Expert Web DevRel. Ex VP Eng (DevTools & DevRel) Rapid \u00b7 Google Developers Advisory Board (gDAB) founding member \u00b7 AI\\\/ML\\\/DevTools Angel Investor (Replit, Resend, Daytona, Gumroad and you?) \u276f AI\\\/ML Advisory Board San Francisco, DevNetwork. Award-winning Open Source Engineering leader authored hundreds of open-source dev-tools and software libraries used by millions of developers, including Shades of Purple code theme and corona-cli. Linux Foundation (Node.js Committee Lead), OpenAPI Business Governing Board. Taught 108K+ developers via NodeCLI.com and VSCode.pro course. 274 million views, blogging for 24 yrs. \u276f Read more about Ahmad Awais or come say hi on \ud835\udd4f @MrAhmadAwais.\",\"sameAs\":[\"https:\\\/\\\/AhmadAwais.com\\\/\",\"https:\\\/\\\/facebook.com\\\/AhmadAwais\",\"https:\\\/\\\/instagram.com\\\/MrAhmadAwais\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/MrAhmadAwais\\\/\",\"https:\\\/\\\/x.com\\\/MrAhmadAwais\",\"https:\\\/\\\/youtube.com\\\/AhmadAwais\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"QuickTip: How to set Python default version to 3.x on macOS?","description":"If you are a macOS user like me, you know the default version of Python that comes by default with your mac is version 2.X. Most of the time, you'll end","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:\/\/ahmadawais.com\/how-to-set-python-default-version-to-3-on-macos\/","og_locale":"en_US","og_type":"article","og_title":"QuickTip: How to set Python default version to 3.x on macOS?","og_description":"If you are a macOS user like me, you know the default version of Python that comes by default with your mac is version 2.X. Most of the time, you'll end","og_url":"https:\/\/ahmadawais.com\/how-to-set-python-default-version-to-3-on-macos\/","og_site_name":"Ahmad Awais","article_publisher":"https:\/\/facebook.com\/AhmadAwais","article_author":"https:\/\/facebook.com\/AhmadAwais","article_published_time":"2021-03-06T09:30:10+00:00","article_modified_time":"2021-03-06T09:31:20+00:00","og_image":[{"width":2560,"height":1440,"url":"https:\/\/ahmadawais.com\/wp-content\/uploads\/2024\/08\/ahmad-awais.jpg","type":"image\/jpeg"}],"author":"Ahmad Awais","twitter_card":"summary_large_image","twitter_creator":"@MrAhmadAwais","twitter_site":"@MrAhmadAwais","twitter_misc":{"Written by":"Ahmad Awais","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/ahmadawais.com\/how-to-set-python-default-version-to-3-on-macos\/#article","isPartOf":{"@id":"https:\/\/ahmadawais.com\/how-to-set-python-default-version-to-3-on-macos\/"},"author":{"name":"Ahmad Awais","@id":"https:\/\/ahmadawais.com\/#\/schema\/person\/1d1b9504182dca2315cf039fb4ebb85b"},"headline":"QuickTip: How to set Python default version to 3.x on macOS?","datePublished":"2021-03-06T09:30:10+00:00","dateModified":"2021-03-06T09:31:20+00:00","mainEntityOfPage":{"@id":"https:\/\/ahmadawais.com\/how-to-set-python-default-version-to-3-on-macos\/"},"wordCount":309,"commentCount":0,"publisher":{"@id":"https:\/\/ahmadawais.com\/#\/schema\/person\/1d1b9504182dca2315cf039fb4ebb85b"},"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/ahmadawais.com\/how-to-set-python-default-version-to-3-on-macos\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/ahmadawais.com\/how-to-set-python-default-version-to-3-on-macos\/","url":"https:\/\/ahmadawais.com\/how-to-set-python-default-version-to-3-on-macos\/","name":"QuickTip: How to set Python default version to 3.x on macOS?","isPartOf":{"@id":"https:\/\/ahmadawais.com\/#website"},"datePublished":"2021-03-06T09:30:10+00:00","dateModified":"2021-03-06T09:31:20+00:00","description":"If you are a macOS user like me, you know the default version of Python that comes by default with your mac is version 2.X. Most of the time, you'll end","breadcrumb":{"@id":"https:\/\/ahmadawais.com\/how-to-set-python-default-version-to-3-on-macos\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ahmadawais.com\/how-to-set-python-default-version-to-3-on-macos\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/ahmadawais.com\/how-to-set-python-default-version-to-3-on-macos\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/ahmadawais.com\/"},{"@type":"ListItem","position":2,"name":"QuickTip: How to set Python default version to 3.x on macOS?"}]},{"@type":"WebSite","@id":"https:\/\/ahmadawais.com\/#website","url":"https:\/\/ahmadawais.com\/","name":"Ahmad Awais","description":"Founder &amp; CEO of CommandCode.ai f\/k\/a Langbase | Google Developers Advisory Board (gDAB) founding member","publisher":{"@id":"https:\/\/ahmadawais.com\/#\/schema\/person\/1d1b9504182dca2315cf039fb4ebb85b"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ahmadawais.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/ahmadawais.com\/#\/schema\/person\/1d1b9504182dca2315cf039fb4ebb85b","name":"Ahmad Awais","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ahmadawais.com\/wp-content\/uploads\/2020\/06\/Ahmad-Awais-face.jpg","url":"https:\/\/ahmadawais.com\/wp-content\/uploads\/2020\/06\/Ahmad-Awais-face.jpg","contentUrl":"https:\/\/ahmadawais.com\/wp-content\/uploads\/2020\/06\/Ahmad-Awais-face.jpg","width":2299,"height":1705,"caption":"Ahmad Awais"},"logo":{"@id":"https:\/\/ahmadawais.com\/wp-content\/uploads\/2020\/06\/Ahmad-Awais-face.jpg"},"description":"Founder & CEO of \u2318 Command Code coding agent with taste. Founded Langbase.com, AI cloud to build, deploy, and scale AI agents with tools & memory \u00b7 Creator of Command.new. \"Awais is an awesome example for developers\" \u2014 Satya Nadella, CEO of Microsoft. NASA Mars Ingenuity Helicopter mission code contributor 8th GitHub Stars Award recipient with 5x GitHub Stars Award (Listed as GitHub's #1 JavaScript trending developer). Google Developers Expert Web DevRel. Ex VP Eng (DevTools & DevRel) Rapid \u00b7 Google Developers Advisory Board (gDAB) founding member \u00b7 AI\/ML\/DevTools Angel Investor (Replit, Resend, Daytona, Gumroad and you?) \u276f AI\/ML Advisory Board San Francisco, DevNetwork. Award-winning Open Source Engineering leader authored hundreds of open-source dev-tools and software libraries used by millions of developers, including Shades of Purple code theme and corona-cli. Linux Foundation (Node.js Committee Lead), OpenAPI Business Governing Board. Taught 108K+ developers via NodeCLI.com and VSCode.pro course. 274 million views, blogging for 24 yrs. \u276f Read more about Ahmad Awais or come say hi on \ud835\udd4f @MrAhmadAwais.","sameAs":["https:\/\/AhmadAwais.com\/","https:\/\/facebook.com\/AhmadAwais","https:\/\/instagram.com\/MrAhmadAwais\/","https:\/\/www.linkedin.com\/in\/MrAhmadAwais\/","https:\/\/x.com\/MrAhmadAwais","https:\/\/youtube.com\/AhmadAwais"]}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/posts\/7408","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/comments?post=7408"}],"version-history":[{"count":2,"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/posts\/7408\/revisions"}],"predecessor-version":[{"id":7410,"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/posts\/7408\/revisions\/7410"}],"wp:attachment":[{"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/media?parent=7408"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/categories?post=7408"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/tags?post=7408"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}