{"id":23678,"date":"2020-10-05T06:16:05","date_gmt":"2020-10-05T13:16:05","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=23678"},"modified":"2023-12-01T04:01:23","modified_gmt":"2023-12-01T12:01:23","slug":"python-pip-install-invalid-syntax","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/","title":{"rendered":"Python pip install invalid syntax Solution"},"content":{"rendered":"\n<p>The pip package installer must be run from the command line. If you try to install a package from the <a href=\"https:\/\/careerkarma.com\/blog\/python-interpreter\/\">Python interpreter<\/a> or in a Python program, you\u2019ll encounter the <code>SyntaxError: invalid syntax<\/code> error.<br><\/p>\n\n\n\n<p>In this guide, we\u2019re going to discuss the cause of the pip install invalid syntax error and what it means. We\u2019ll walk through an example of this error so you can learn how to fix it in your code.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">pip install invalid syntax<\/h2>\n\n\n\n<p>Python pip is a package installer. The pip tool lets you download and install packages from the Python Package Index, where thousands of libraries are available with which you can work in your code.<br><\/p>\n\n\n\n<p>The pip tool runs as its own command line <code>interface. pip <\/code>is separate from your installation of Python. This is because pip is an installer rather than a tool that executes code.<br><\/p>\n\n\n\n<p>If these tools were bundled together, it would be more confusing for developers who want to install packages because similar syntax used to start a Python program would also apply to installing modules.<br><\/p>\n\n\n\n<p>This behavior is common across programming environments. Node.js relies on npm to install packages. To run a program using Node.js, you need to use the node command.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">An Example Scenario<\/h2>\n\n\n\n<p>We\u2019re going to set up the Beautiful Soup 4 library (bs4) in a development environment. This library lets you scrape a web page and retrieve particular pieces of data.<br><\/p>\n\n\n\n<p>To start, let\u2019s open up a <a href=\"https:\/\/careerkarma.com\/blog\/python-2-vs-python-3\/\">Python 3 shell<\/a>. In this shell, we&#8217;ll do all the work for our project:<br><\/p>\n\n\n\n<p><code>python3<br><\/code><\/p>\n\n\n\n<p>An interactive shell is opened in which we can write our Python code:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Python 3.8.5 (v3.8.5:580fbb018f, Jul 20 2020, 12:11:27)\n[Clang 6.0 (clang-600.0.57)] on darwin\nType \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n&gt;&gt;&gt;\n<\/pre><\/div>\n\n\n\n<p>Next, let\u2019s <a href=\"https:\/\/careerkarma.com\/blog\/python-import\/\">import the bs4 library into our code<\/a>. We must import any external libraries that we want to use before we can reference them in a program or the shell. Here\u2019s the command we\u2019ll use to import the bs4package:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&gt;&gt;&gt; from bs4 import BeautifulSoup\nTraceback (most recent call last):\n  File \"&lt;stdin&gt;\", line 1, in &lt;module&gt;\nModuleNotFoundError: No module named 'bs4'\n<\/pre><\/div>\n\n\n\n<p>Our code returns a <a href=\"https:\/\/careerkarma.com\/blog\/python-modulenotfounderror\/\">ModuleNotFoundError<\/a> when we try to import our package. This means that we can\u2019t continue writing our program. Python cannot locate the package modules that we need to write our program. Let\u2019s fix this error by installing the bs4 library:<br><\/p>\n\n\n\n<p><code>&gt;&gt;&gt; pip install bs4<br><\/code><\/p>\n\n\n\n<p>This command results in another error:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>File \"&lt;stdin&gt;\", line 1\n\tpip3 install bs4\n    \t^\nSyntaxError: invalid syntax\n<\/pre><\/div>\n\n\n\n<p>It appears as if we cannot install bs4 using the pip3 command in the Python shell. pip3 is the package installer for Python 3 packages.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Solution<\/h2>\n\n\n\n<p>We\u2019ve tried to install the bs4 package from the Python interpreter.<br><\/p>\n\n\n\n<p>You can tell because we\u2019ve opened Python 3 using the python3 command and then we\u2019ve executed the pip3 install command.<br><\/p>\n\n\n\n<p>Python returns a pip install invalid syntax error because pip is not a keyword in Python. pip is a command line tool that must be run from a <a href=\"https:\/\/careerkarma.com\/blog\/linux-command-line\/\">command line shell<\/a>.<br><\/p>\n\n\n\n<p>To fix this error, we must first exit our Python shell:<br><\/p>\n\n\n\n<p><code>&gt;&gt;&gt; exit()<br><\/code><\/p>\n\n\n\n<p>The exit() command tells Python to close the interpreter that is open. Next, we can install bs4 from the command prompt:<br><\/p>\n\n\n\n<p><code>pip3 install bs4<br><\/code><\/p>\n\n\n\n<p>This command will install the pip library onto our system. Once this command has executed, we can open up a new Python shell:<br><\/p>\n\n\n\n<p><code>python3&nbsp;<br><\/code><\/p>\n\n\n\n<p>Our new shell should have access to the bs4 library. We can test this by importing bs4 into our code:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&gt;&gt;&gt; from bs4 import BeautifulSoup\n&gt;&gt;&gt; \n<\/pre><\/div>\n\n\n\n<p>No error is raised. This means that the import was successful. We can now use bs4 in our program.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The pip install invalid syntax error is raised when you try to install a Python package from the interpreter. To fix this error, exit your interpreter and run the pip install command from a command line shell.<br><\/p>\n\n\n\n<p>Now you have the expertise you need to solve this error like a professional coder!<br><\/p>\n","protected":false},"excerpt":{"rendered":"The pip package installer must be run from the command line. If you try to install a package from the Python interpreter or in a Python program, you\u2019ll encounter the SyntaxError: invalid syntax error. In this guide, we\u2019re going to discuss the cause of the pip install invalid syntax error and what it means. We\u2019ll&hellip;","protected":false},"author":240,"featured_media":23679,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-23678","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-python"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"Python","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.0 (Yoast SEO v27.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Python pip install invalid syntax Solution | Career Karma<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn about the Python pip install invalid syntax error, why the error is raised, and how to solve the error.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python pip install invalid syntax Solution\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn about the Python pip install invalid syntax error, why the error is raised, and how to solve the error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2020-10-05T13:16:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:01:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/anas-alshanti-feXpdV001o4-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"631\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"James Gallagher\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"James Gallagher\" \/>\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:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Python pip install invalid syntax Solution\",\"datePublished\":\"2020-10-05T13:16:05+00:00\",\"dateModified\":\"2023-12-01T12:01:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/\"},\"wordCount\":607,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/anas-alshanti-feXpdV001o4-unsplash.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/\",\"name\":\"Python pip install invalid syntax Solution | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/anas-alshanti-feXpdV001o4-unsplash.jpg\",\"datePublished\":\"2020-10-05T13:16:05+00:00\",\"dateModified\":\"2023-12-01T12:01:23+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"On Career Karma, learn about the Python pip install invalid syntax error, why the error is raised, and how to solve the error.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/anas-alshanti-feXpdV001o4-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/anas-alshanti-feXpdV001o4-unsplash.jpg\",\"width\":1000,\"height\":631},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/careerkarma.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python\",\"item\":\"https:\/\/careerkarma.com\/blog\/python\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Python pip install invalid syntax Solution\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\",\"url\":\"https:\/\/careerkarma.com\/blog\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/careerkarma.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\",\"name\":\"James Gallagher\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"caption\":\"James Gallagher\"},\"description\":\"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.\",\"url\":\"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Python pip install invalid syntax Solution | Career Karma","description":"On Career Karma, learn about the Python pip install invalid syntax error, why the error is raised, and how to solve the error.","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:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/","og_locale":"en_US","og_type":"article","og_title":"Python pip install invalid syntax Solution","og_description":"On Career Karma, learn about the Python pip install invalid syntax error, why the error is raised, and how to solve the error.","og_url":"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-10-05T13:16:05+00:00","article_modified_time":"2023-12-01T12:01:23+00:00","og_image":[{"width":1000,"height":631,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/anas-alshanti-feXpdV001o4-unsplash.jpg","type":"image\/jpeg"}],"author":"James Gallagher","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"James Gallagher","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Python pip install invalid syntax Solution","datePublished":"2020-10-05T13:16:05+00:00","dateModified":"2023-12-01T12:01:23+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/"},"wordCount":607,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/anas-alshanti-feXpdV001o4-unsplash.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/","url":"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/","name":"Python pip install invalid syntax Solution | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/anas-alshanti-feXpdV001o4-unsplash.jpg","datePublished":"2020-10-05T13:16:05+00:00","dateModified":"2023-12-01T12:01:23+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"On Career Karma, learn about the Python pip install invalid syntax error, why the error is raised, and how to solve the error.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/anas-alshanti-feXpdV001o4-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/anas-alshanti-feXpdV001o4-unsplash.jpg","width":1000,"height":631},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-pip-install-invalid-syntax\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Python","item":"https:\/\/careerkarma.com\/blog\/python\/"},{"@type":"ListItem","position":3,"name":"Python pip install invalid syntax Solution"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94","name":"James Gallagher","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","caption":"James Gallagher"},"description":"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.","url":"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/23678","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/240"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=23678"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/23678\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/23679"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=23678"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=23678"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=23678"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}