{"id":24051,"date":"2020-10-12T15:09:15","date_gmt":"2020-10-12T22:09:15","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=24051"},"modified":"2023-12-01T04:01:27","modified_gmt":"2023-12-01T12:01:27","slug":"python-nameerror-name-xrange-is-not-defined","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/","title":{"rendered":"Git xcrun: error: invalid active developer path Solution"},"content":{"rendered":"\n<p>Git relies on various dependencies within Apple\u2019s Xcode command line tools to function. If you do not have Xcode Tools installed on your system, you\u2019ll encounter the <code>xcrun: error: invalid active developer path (\/Library\/Developer\/CommandLineTools)<\/code> when you try to run a Git command.<br><\/p>\n\n\n\n<p>This guide discusses what this error means and why you may see it. We\u2019ll walk you through an example scenario so you can learn how to solve this error.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">xcrun: error: invalid active developer path (\/Library\/Developer\/CommandLineTools)<\/h2>\n\n\n\n<p>Many developer tools, like the <a href=\"https:\/\/careerkarma.com\/blog\/what-is-git\/\">Git version control system<\/a>, rely on Xcode Tools. <a href=\"https:\/\/careerkarma.com\/subjects\/best-xcode-bootcamps\/\">Xcode Tools<\/a> is a command line package that provides a suite of software development tools built by Apple.<br><\/p>\n\n\n\n<p>For Git to work, you must have a Xcode Tools installed. The Xcode Tools suite does not come built-in with a Mac because it is primarily for developer use. Most non-technical computer users will never need to have Xcode Tools on their system.<br><\/p>\n\n\n\n<p>You may not already have Xcode Tools on your system if you have just moved to a new computer. You need to reinstall Xcode Tools before you can use Git. If you have reinstalled your system, or uninstalled Xcode Tools, you will need to initiate a new install to fix this error.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">An Example Scenario<\/h2>\n\n\n\n<p>We\u2019ve just moved to a new Mac development environment. Our new computer has not yet been configured with Git. We are going to start to configure our environment.<br><\/p>\n\n\n\n<p>To start, we use the git config command to save our name onto our Git installation:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git config --global user.name &quot;Career Karma&quot;<\/pre><\/div>\n\n\n\n<p>This command returns an error:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>xcrun: error: invalid active developer path (\/Library\/Developer\/CommandLineTools), missing xcrun at: \/Library\/Developer\/CommandLineTools\/usr\/bin\/xcrun<\/pre><\/div>\n\n\n\n<p>The git command cannot execute because we do not have Xcode Tools installed.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Solution<\/h2>\n\n\n\n<p>The easiest way to install Xcode Tools is to do so from the command line. You can also install Xcode Tools from the Apple Developer website. We\u2019ll walk about this solution later in the article.<br><\/p>\n\n\n\n<p>You do not need to install Xcode to install Xcode Tools. Xcode itself can be over 10GB in size. You should only install Xcode if you have a need to do so, such as if you are working on an iOS development project that depends on Xcode.<br><\/p>\n\n\n\n<p>Macs come with a built-in command that lets you install Xcode Tools called xcode-select. Let\u2019s install Xcode Tools on our system using this <a href=\"https:\/\/careerkarma.com\/blog\/linux-command-line\/\">Linux command<\/a>:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>xcode-select --install<\/pre><\/div>\n\n\n\n<p>The &#8211;install flag denotes that we want to install Xcode Tools. After running this command, you\u2019ll receive a message that informs you the installation process is about to begin:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>xcode-select: note: install requested for command line developer tools<\/pre><\/div>\n\n\n\n<p>A new window will open up in which you will be asked to install Xcode Tools. The installation window works like any other window that you would see when you install a piece of software.<br><\/p>\n\n\n\n<p>Xcode Tools can take a while to install as it is a large suite of tools. You can still work in the background while the installation is running but you can\u2019t run Git until the installation process has completed.<br><\/p>\n\n\n\n<p>Once you have installed Xcode Tools, restart your terminal. This is important because your old shell environment may not have been updated to include your installation of Xcode Tools. If you still receive the xcrun error, restart your computer.<br><\/p>\n\n\n\n<p>Let\u2019s try to <a href=\"https:\/\/careerkarma.com\/blog\/git-config\/\">configure our Git username<\/a>:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git config --global user.name &quot;Career Karma&quot;<\/pre><\/div>\n\n\n\n<p>No errors have been raised. This means our user name has been successfully changed. Our installation of developer tools has worked.<br><\/p>\n\n\n\n<p>If this solution does not work, you may need to reset your xcode-select instance. You can do this using the &#8211;reset flag:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>xcode-select --reset<\/pre><\/div>\n\n\n\n<p>You will be prompted to install Xcode Tools after you have run this command. You should only use the &#8211;reset flag if you have been unable to install Xcode Tools using the &#8211;install flag.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The <code>xcrun: error: invalid active developer path (\/Library\/Developer\/CommandLineTools)<\/code> error is raised when you try to run a git command without having Xcode Tools installed.<br><\/p>\n\n\n\n<p>To fix this error, run xcode-select &#8211;install and install Xcode Tools. If this does not work, try to run the xcode-select command with the &#8211;reset flag.<\/p>\n","protected":false},"excerpt":{"rendered":"Git relies on various dependencies within Apple\u2019s Xcode command line tools to function. If you do not have Xcode Tools installed on your system, you\u2019ll encounter the xcrun: error: invalid active developer path (\/Library\/Developer\/CommandLineTools) when you try to run a Git command. This guide discusses what this error means and why you may see it.&hellip;","protected":false},"author":240,"featured_media":20782,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-24051","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":"Git","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>Git xcrun: error: invalid active developer path Solution | Career Karma<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn about the Git xcrun: error: invalid active developer path 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-nameerror-name-xrange-is-not-defined\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Git xcrun: error: invalid active developer path Solution\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn about the Git xcrun: error: invalid active developer path error, why the error is raised, and how to solve the error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/\" \/>\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-12T22:09:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:01:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/christin-hume-hBuwVLcYTnA-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Git xcrun: error: invalid active developer path Solution\",\"datePublished\":\"2020-10-12T22:09:15+00:00\",\"dateModified\":\"2023-12-01T12:01:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/\"},\"wordCount\":662,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/christin-hume-hBuwVLcYTnA-unsplash.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/\",\"name\":\"Git xcrun: error: invalid active developer path Solution | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/christin-hume-hBuwVLcYTnA-unsplash.jpg\",\"datePublished\":\"2020-10-12T22:09:15+00:00\",\"dateModified\":\"2023-12-01T12:01:27+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"On Career Karma, learn about the Git xcrun: error: invalid active developer path error, why the error is raised, and how to solve the error.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/christin-hume-hBuwVLcYTnA-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/christin-hume-hBuwVLcYTnA-unsplash.jpg\",\"width\":1020,\"height\":680},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/careerkarma.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Git\",\"item\":\"https:\/\/careerkarma.com\/blog\/git\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Git xcrun: error: invalid active developer path 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":"Git xcrun: error: invalid active developer path Solution | Career Karma","description":"On Career Karma, learn about the Git xcrun: error: invalid active developer path 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-nameerror-name-xrange-is-not-defined\/","og_locale":"en_US","og_type":"article","og_title":"Git xcrun: error: invalid active developer path Solution","og_description":"On Career Karma, learn about the Git xcrun: error: invalid active developer path error, why the error is raised, and how to solve the error.","og_url":"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-10-12T22:09:15+00:00","article_modified_time":"2023-12-01T12:01:27+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/christin-hume-hBuwVLcYTnA-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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Git xcrun: error: invalid active developer path Solution","datePublished":"2020-10-12T22:09:15+00:00","dateModified":"2023-12-01T12:01:27+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/"},"wordCount":662,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/christin-hume-hBuwVLcYTnA-unsplash.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/","url":"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/","name":"Git xcrun: error: invalid active developer path Solution | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/christin-hume-hBuwVLcYTnA-unsplash.jpg","datePublished":"2020-10-12T22:09:15+00:00","dateModified":"2023-12-01T12:01:27+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"On Career Karma, learn about the Git xcrun: error: invalid active developer path error, why the error is raised, and how to solve the error.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/christin-hume-hBuwVLcYTnA-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/christin-hume-hBuwVLcYTnA-unsplash.jpg","width":1020,"height":680},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-nameerror-name-xrange-is-not-defined\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Git","item":"https:\/\/careerkarma.com\/blog\/git\/"},{"@type":"ListItem","position":3,"name":"Git xcrun: error: invalid active developer path 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\/24051","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=24051"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/24051\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/20782"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=24051"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=24051"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=24051"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}