{"id":25264,"date":"2020-11-05T14:38:53","date_gmt":"2020-11-05T22:38:53","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=25264"},"modified":"2020-11-10T09:00:04","modified_gmt":"2020-11-10T17:00:04","slug":"packages-for-python-using-pip-2","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/","title":{"rendered":"Packages for Python Using Pip"},"content":{"rendered":"\n<p>Managing your packages in Python can be a cumbersome task. This article discusses useful commands and provides resources to help manage your packages using pip and the difference between pipenv and virtualenv. We will also cover a powerful framework named Django.<br><\/p>\n\n\n\n<p>What is pip? Pip is a useful <a href=\"http:\/\/www.datacamp.com\/community\/tutorials\/pip-python-package-manager\/\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">package manager<\/a>. Pip is a recursive acronym that can stand for \u201cPip Installs Packages\u201d or \u201cPip Installs Python\u201d. Alternatively, pip stands for \u201cpreferred installer program\u201d.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Update a Package<\/h2>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"667\" src=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/pasted-image-0-41.png\" alt=\"\" class=\"wp-image-25277\" srcset=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/pasted-image-0-41.png 1000w, https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/pasted-image-0-41-768x512.png 768w, https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/pasted-image-0-41-770x514.png 770w, https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/pasted-image-0-41-20x13.png 20w, https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/pasted-image-0-41-385x257.png 385w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" \/><\/figure>\n\n\n\n<p>In the following paragraphs, the focus will be on how to update existing packages in Python using the package manager pip.&nbsp;<\/p>\n\n\n\n<p>First, make sure you have pip installed by running <strong>pip &#8211;version<\/strong> in your terminal. If you installed Python using Homebrew or with an installer from python.org, you should have pip. If you are on Linux, you may have to install pip separately. Take a look at our <a href=\"https:\/\/careerkarma.com\/blog\/python-pip-command-not-found\/\">article<\/a>. It guides you on how to install pip on your machine.<\/p>\n\n\n\n<p>To update an existing package in your pipfile, use <strong>pip install &#8211;upgrade PackageName<\/strong> to install the latest version of your package. If there is a specific version of the package you want installed then type the version after the package name. Refer to the following example on how to include the exact version needed for your project\/application (eg. <strong>pip install &#8211;upgrade PackageName==1.4<\/strong>).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Install Dependencies from Your Pipfile<\/h2>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"669\" src=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/pasted-image-0-40.png\" alt=\"\" class=\"wp-image-25265\" srcset=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/pasted-image-0-40.png 1000w, https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/pasted-image-0-40-768x514.png 768w, https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/pasted-image-0-40-770x515.png 770w, https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/pasted-image-0-40-20x13.png 20w, https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/pasted-image-0-40-385x258.png 385w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" \/><\/figure>\n\n\n\n<p>Pipenv is a dependency manager for Python projects. It\u2019s similar to Node.js npm and Ruby\u2019s bundler. While pip can install Python packages, pipenv is a preferred tool used for managing dependencies because it is easier. Install pipenv using this pip command in your terminal by inputting: <strong>pip install &#8211;user pipenv. <\/strong>This command does a user installation to prevent damaging any system-wide packages. If pipenv is not available in your terminal\/shell after installation, then you need to add the user base\u2019s binary directory to your PATH. To install dependencies from a pipfile, use the command <strong>pipenv sync<\/strong>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Pipenv vs a Virtual Environment&nbsp;<\/h2>\n\n\n\n<p>A virtual environment (Virtualenv) is used to create remote Python environments. Virtualenv creates a folder which contains all the necessary executables to use the packages that a Python project might need. It can be used as a standalone instead of pipenv. Use the command <strong>pip install virtualenv <\/strong>in your terminal to install the virtual environment.&nbsp;<br><\/p>\n\n\n\n<p>Test it\u2019s installation by running the command <strong>Virtualenv &#8211;version <\/strong>in your terminal. A virtual environment is used so that you don\u2019t change the versions of other projects that may be incompatible with the existing packages in other projects system wide. On the other hand, pipenv is used to manage your dependencies according to the requirements on a project by project basis.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Django and Python<\/h2>\n\n\n\n<p>Django and Python go hand in hand in backend development. Python is powerful and concise, while Django is a web framework with a lot of useful tools like the command line tool Django-admin.<br><\/p>\n\n\n\n<p>If you don\u2019t have Django installed already, install it using the command,<strong> pip install Django<\/strong>. When creating your project using the Django web framework, a command line tool named django-admin will be installed. Utilize the command Django-admin startproject project_name to start the project. Find useful tips and resources by reading our <a href=\"https:\/\/careerkarma.com\/blog\/what-is-python-django\/\">article<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>In this article, we\u2019ve discussed how to update a package using pip and how to install dependencies from a pipfile in an existing project, the differences between pipenv and virtualenv and their uses, and Django, a powerful framework that complements Python.&nbsp;<br><\/p>\n\n\n\n<p>There are also a few resources available to take a deeper dive into relevant topics. You are well on your way to mastering managing your Python packages!<br><\/p>\n","protected":false},"excerpt":{"rendered":"Managing your packages in Python can be a cumbersome task. This article discusses useful commands and provides resources to help manage your packages using pip and the difference between pipenv and virtualenv. We will also cover a powerful framework named Django. What is pip? Pip is a useful package manager. Pip is a recursive acronym&hellip;","protected":false},"author":98,"featured_media":4971,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-25264","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>Packages for Python Using Pip | Career Karma<\/title>\n<meta name=\"description\" content=\"On Career Karma, get useful tips on how to manage packages on #Python using pip\" \/>\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\/packages-for-python-using-pip-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Packages for Python Using Pip\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, get useful tips on how to manage packages on #Python using pip\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/\" \/>\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-11-05T22:38:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-11-10T17:00:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/08\/photo-1515879218367-8466d910aaa4.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"668\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Morgan Peterson\" \/>\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=\"Morgan Peterson\" \/>\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\/packages-for-python-using-pip-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/\"},\"author\":{\"name\":\"Morgan Peterson\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/81fc8132ba10e4d64491e31390d2372a\"},\"headline\":\"Packages for Python Using Pip\",\"datePublished\":\"2020-11-05T22:38:53+00:00\",\"dateModified\":\"2020-11-10T17:00:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/\"},\"wordCount\":622,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/08\/photo-1515879218367-8466d910aaa4.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/\",\"name\":\"Packages for Python Using Pip | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/08\/photo-1515879218367-8466d910aaa4.jpg\",\"datePublished\":\"2020-11-05T22:38:53+00:00\",\"dateModified\":\"2020-11-10T17:00:04+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/81fc8132ba10e4d64491e31390d2372a\"},\"description\":\"On Career Karma, get useful tips on how to manage packages on #Python using pip\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/08\/photo-1515879218367-8466d910aaa4.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/08\/photo-1515879218367-8466d910aaa4.jpg\",\"width\":1000,\"height\":668},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/#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\":\"Packages for Python Using Pip\"}]},{\"@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\/81fc8132ba10e4d64491e31390d2372a\",\"name\":\"Morgan Peterson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/12\/morgan-peterson-150x150.jpeg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/12\/morgan-peterson-150x150.jpeg\",\"caption\":\"Morgan Peterson\"},\"description\":\"As a member of Career Karma's technical content team, Morgan writes coding tutorials and other resources for aspiring programmers. A native of New York City, Morgan attended Fordham University and completed Lambda School's full stack development and computer science program. Before joining the Career Karma team in October 2020, she spent time at Wells Fargo as a bilingual mortgage consultant. When Morgan isn't creating user-centric websites or learning new technology, she's writing poetry, which you can easily find online.\",\"sameAs\":[\"http:\/\/linkedin.com\/in\/morgandpeterson\"],\"url\":\"https:\/\/careerkarma.com\/blog\/author\/morgan-peterson\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Packages for Python Using Pip | Career Karma","description":"On Career Karma, get useful tips on how to manage packages on #Python using pip","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\/packages-for-python-using-pip-2\/","og_locale":"en_US","og_type":"article","og_title":"Packages for Python Using Pip","og_description":"On Career Karma, get useful tips on how to manage packages on #Python using pip","og_url":"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-11-05T22:38:53+00:00","article_modified_time":"2020-11-10T17:00:04+00:00","og_image":[{"width":1000,"height":668,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/08\/photo-1515879218367-8466d910aaa4.jpg","type":"image\/jpeg"}],"author":"Morgan Peterson","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Morgan Peterson","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/"},"author":{"name":"Morgan Peterson","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/81fc8132ba10e4d64491e31390d2372a"},"headline":"Packages for Python Using Pip","datePublished":"2020-11-05T22:38:53+00:00","dateModified":"2020-11-10T17:00:04+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/"},"wordCount":622,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/08\/photo-1515879218367-8466d910aaa4.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/","url":"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/","name":"Packages for Python Using Pip | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/08\/photo-1515879218367-8466d910aaa4.jpg","datePublished":"2020-11-05T22:38:53+00:00","dateModified":"2020-11-10T17:00:04+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/81fc8132ba10e4d64491e31390d2372a"},"description":"On Career Karma, get useful tips on how to manage packages on #Python using pip","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/08\/photo-1515879218367-8466d910aaa4.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/08\/photo-1515879218367-8466d910aaa4.jpg","width":1000,"height":668},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/packages-for-python-using-pip-2\/#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":"Packages for Python Using Pip"}]},{"@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\/81fc8132ba10e4d64491e31390d2372a","name":"Morgan Peterson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/12\/morgan-peterson-150x150.jpeg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/12\/morgan-peterson-150x150.jpeg","caption":"Morgan Peterson"},"description":"As a member of Career Karma's technical content team, Morgan writes coding tutorials and other resources for aspiring programmers. A native of New York City, Morgan attended Fordham University and completed Lambda School's full stack development and computer science program. Before joining the Career Karma team in October 2020, she spent time at Wells Fargo as a bilingual mortgage consultant. When Morgan isn't creating user-centric websites or learning new technology, she's writing poetry, which you can easily find online.","sameAs":["http:\/\/linkedin.com\/in\/morgandpeterson"],"url":"https:\/\/careerkarma.com\/blog\/author\/morgan-peterson\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/25264","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\/98"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=25264"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/25264\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/4971"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=25264"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=25264"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=25264"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}