{"id":2853,"date":"2017-09-08T15:46:33","date_gmt":"2017-09-08T10:46:33","guid":{"rendered":"https:\/\/ahmadawais.com\/?p=2853"},"modified":"2021-11-14T13:35:23","modified_gmt":"2021-11-14T08:35:23","slug":"install-pip-macos-os-x-python","status":"publish","type":"post","link":"https:\/\/ahmadawais.com\/install-pip-macos-os-x-python\/","title":{"rendered":"QuickTip: How Do I Install pip on macOS or OS X?"},"content":{"rendered":"<p>Even if you are not into <code>Python<\/code> there comes a time when you end up with the need of having to install <a href=\"https:\/\/pip.pypa.io\/en\/stable\/\" target=\"_blank\" rel=\"noopener noreferrer\"><code>pip<\/code><\/a> on your macOS or OSX-based computer.<\/p>\n<p>Searching online would lead you to long tutorials which are not really what you need. In this post, I&#8217;ll give you multiple one-line solutions based on your version of Python installed.<\/p>\n<\/section>\n<div class=\"postcontents full dark\">\n<div class=\"wrapper\">\n<h2 id=\"install-pip-on-macos\">Install pip on macOS<a href=\"#install-pip-on-macos\" class=\"heading-link\">#<\/a><\/h2>\n<\/div>\n<\/div>\n<section class=\"postcontents wrapper\">\n<p>If you have the default version of Python on macOS (v2.7 as of 2021).<\/p>\n<pre class=\"lang:bash\">curl https:\/\/bootstrap.pypa.io\/pip\/2.7\/get-pip.py | python<\/pre>\n<p>If you have Python v3 installed as <code>python<\/code>, run this:<\/p>\n<pre class=\"lang:bash\">curl https:\/\/bootstrap.pypa.io\/get-pip.py | python<\/pre>\n<p>Or if you have it installed as <code>python3<\/code> run the following:<\/p>\n<pre class=\"lang:bash\">curl https:\/\/bootstrap.pypa.io\/get-pip.py | python3<\/pre>\n<p>That&#8217;s about it. Have fun. Check out my <a href=\"https:\/\/ahmadawais.com\/courses\/\">courses<\/a> \u2014 could be fun.<\/p>\n<div class=\"alert gray\">\ud83d\udc4b<strong>Course<\/strong>: <a href=\"https:\/\/buildasaasappwithflask.com\/ref-ahmadawais\">Learn to build SaaS apps with Python Flask &amp; Docker \u2192<\/a> <\/div>\n<p style=\"background: #4c41c912; padding: 3rem; background-color: #ffd54f42; border-radius: 3px; margin: 3rem 0; box-shadow: 4px 6.9px 16px rgba(0,0,0,.15)!important; transition: all .4s ease-in;\">\ud83d\udcdf Check out my new course \u2192 <strong><a href=\"https:\/\/NodeCLI.com\">NodeCLI.com<\/a><\/strong> build any kind of automation software and do with Node.js and JavaScript. <strong>Easily my best course ever.<\/strong><\/p>\n<p><img decoding=\"async\" class=\"emoji\" draggable=\"false\" src=\"https:\/\/s.w.org\/images\/core\/emoji\/11\/svg\/1f525.svg\" alt=\"\ud83d\udd25\" \/> I&#8217;ve just launched a course called <a href=\"https:\/\/VSCode.pro\/\">VSCode Power User \u2192<\/a> Check out why I worked ridiculously hard for 1.5 years and 1,000+ hours building, recording, sharing 200+ dev tips in this <a href=\"https:\/\/VSCode.pro\/\">VSCode.pro course!<\/a><\/p>\n<h3 id=\"the-explanation\">The explanation<a href=\"#the-explanation\" class=\"heading-link\">#<\/a><\/h3>\n<blockquote><p><strong>\u26a0\ufe0f <code>easy_install<\/code> has been <a href=\"https:\/\/setuptools.readthedocs.io\/en\/latest\/easy_install.html\" rel=\"noreferrer\">deprecated<\/a> in 2019.<\/strong><\/p><\/blockquote>\n<p><code>easy_install<\/code> has been <a href=\"https:\/\/setuptools.readthedocs.io\/en\/latest\/easy_install.html\" rel=\"noreferrer\">deprecated<\/a>. Please use <a href=\"https:\/\/pip.pypa.io\/en\/stable\/installing\/#installing-with-get-pip-py\" rel=\"noreferrer\"><code>get-pip.py<\/code><\/a> instead.<\/p>\n<p><strong>Step #1 \u2014<\/strong> First of all download the <a href=\"https:\/\/pip.pypa.io\/en\/stable\/installing\/#installing-with-get-pip-py\"><code>get-pip<\/code><\/a> file by running:<\/p>\n<pre class=\"lang:bash\">curl https:\/\/bootstrap.pypa.io\/get-pip.py -o get-pip.py<\/pre>\n<p><strong>Step #2 \u2014<\/strong> Now run this file to install <code>pip<\/code><\/p>\n<pre class=\"lang:bash\">python get-pip.py<\/pre>\n<p>That should do it. Make sure you run this with Python 3.X as this doesn&#8217;t work for Python 2.X. If you want to <a href=\"https:\/\/ahmadawais.com\/how-to-set-python-default-version-to-3-on-macos\/\">upgrade to Python 3<\/a> check out this post.<\/p>\n<p>Another gif you said? Here ya go!<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-5499\" src=\"https:\/\/ahmadawais.com\/wp-content\/uploads\/2017\/09\/pip-1.gif\" alt=\"Pip\" width=\"1269\" height=\"714\" \/><\/p>\n<h3 id=\"old-method-doesnt-work-anymore\">Old Method (doesn&#8217;t work anymore)<a href=\"#old-method-doesnt-work-anymore\" class=\"heading-link\">#<\/a><\/h3>\n<p>\u2139 Now, all you have to do is run the following command.<\/p>\n<pre class=\"lang:bash\">sudo easy_install pip<\/pre>\n<p>After that<a href=\"https:\/\/pip.pypa.io\/en\/stable\/\" target=\"_blank\" rel=\"noopener noreferrer\"><code>pip<\/code><\/a> will be installed and you&#8217;ll be able to use it for installing other packages.<\/p>\n<p>Let me know if you have any problems installing <code>pip<\/code> this way.<\/p>\n<div class=\"alert gray\">\ud83d\udc4b<strong>Course<\/strong>: <a href=\"https:\/\/buildasaasappwithflask.com\/ref-ahmadawais\">Learn to build SaaS apps with Python Flask &amp; Docker \u2192<\/a> <\/div>\n<p style=\"background: #4c41c912; padding: 3rem; background-color: #ffd54f42; border-radius: 3px; margin: 3rem 0; box-shadow: 4px 6.9px 16px rgba(0,0,0,.15)!important; transition: all .4s ease-in;\">\ud83d\udcdf Check out my new course \u2192 <strong><a href=\"https:\/\/NodeCLI.com\">NodeCLI.com<\/a><\/strong> build any kind of automation software and do with Node.js and JavaScript.<\/p>\n<p><img decoding=\"async\" class=\"emoji\" draggable=\"false\" src=\"https:\/\/s.w.org\/images\/core\/emoji\/11\/svg\/1f525.svg\" alt=\"\ud83d\udd25\" \/> I&#8217;ve just launched a course called <a href=\"https:\/\/VSCode.pro\/\">VSCode Power User \u2192<\/a> <strong>This is easily my best work ever<\/strong>. Check out why I worked ridiculously hard for 1.5 years and 1,000+ hours building, recording, sharing 200+ dev tips in this <a href=\"https:\/\/VSCode.pro\/\">VSCode.pro course!<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Install pip for Python on macOS or OSX in one single command via command line. Easiest possible way!<\/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":[221],"tags":[162,163],"class_list":["post-2853","post","type-post","status-publish","format-standard","hentry","category-mac","tag-pip","tag-python"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>QuickTip: How Do I Install pip on macOS or OS X?<\/title>\n<meta name=\"description\" content=\"Install pip for Python on macOS or OSX in one single command via command line. Easiest possible way!\" \/>\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\/install-pip-macos-os-x-python\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"QuickTip: How Do I Install pip on macOS or OS X?\" \/>\n<meta property=\"og:description\" content=\"Install pip for Python on macOS or OSX in one single command via command line. Easiest possible way!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ahmadawais.com\/install-pip-macos-os-x-python\/\" \/>\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=\"2017-09-08T10:46:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-14T08:35:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/s.w.org\/images\/core\/emoji\/11\/svg\/1f525.svg\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/install-pip-macos-os-x-python\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/install-pip-macos-os-x-python\\\/\"},\"author\":{\"name\":\"Ahmad Awais\",\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/#\\\/schema\\\/person\\\/1d1b9504182dca2315cf039fb4ebb85b\"},\"headline\":\"QuickTip: How Do I Install pip on macOS or OS X?\",\"datePublished\":\"2017-09-08T10:46:33+00:00\",\"dateModified\":\"2021-11-14T08:35:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/install-pip-macos-os-x-python\\\/\"},\"wordCount\":382,\"commentCount\":133,\"publisher\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/#\\\/schema\\\/person\\\/1d1b9504182dca2315cf039fb4ebb85b\"},\"image\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/install-pip-macos-os-x-python\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/s.w.org\\\/images\\\/core\\\/emoji\\\/11\\\/svg\\\/1f525.svg\",\"keywords\":[\"pip\",\"python\"],\"articleSection\":[\"Mac\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/ahmadawais.com\\\/install-pip-macos-os-x-python\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/install-pip-macos-os-x-python\\\/\",\"url\":\"https:\\\/\\\/ahmadawais.com\\\/install-pip-macos-os-x-python\\\/\",\"name\":\"QuickTip: How Do I Install pip on macOS or OS X?\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/install-pip-macos-os-x-python\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/install-pip-macos-os-x-python\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/s.w.org\\\/images\\\/core\\\/emoji\\\/11\\\/svg\\\/1f525.svg\",\"datePublished\":\"2017-09-08T10:46:33+00:00\",\"dateModified\":\"2021-11-14T08:35:23+00:00\",\"description\":\"Install pip for Python on macOS or OSX in one single command via command line. Easiest possible way!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/install-pip-macos-os-x-python\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/ahmadawais.com\\\/install-pip-macos-os-x-python\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/install-pip-macos-os-x-python\\\/#primaryimage\",\"url\":\"https:\\\/\\\/s.w.org\\\/images\\\/core\\\/emoji\\\/11\\\/svg\\\/1f525.svg\",\"contentUrl\":\"https:\\\/\\\/s.w.org\\\/images\\\/core\\\/emoji\\\/11\\\/svg\\\/1f525.svg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/install-pip-macos-os-x-python\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/ahmadawais.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"QuickTip: How Do I Install pip on macOS or OS X?\"}]},{\"@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 Do I Install pip on macOS or OS X?","description":"Install pip for Python on macOS or OSX in one single command via command line. Easiest possible way!","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\/install-pip-macos-os-x-python\/","og_locale":"en_US","og_type":"article","og_title":"QuickTip: How Do I Install pip on macOS or OS X?","og_description":"Install pip for Python on macOS or OSX in one single command via command line. Easiest possible way!","og_url":"https:\/\/ahmadawais.com\/install-pip-macos-os-x-python\/","og_site_name":"Ahmad Awais","article_publisher":"https:\/\/facebook.com\/AhmadAwais","article_author":"https:\/\/facebook.com\/AhmadAwais","article_published_time":"2017-09-08T10:46:33+00:00","article_modified_time":"2021-11-14T08:35:23+00:00","og_image":[{"url":"https:\/\/s.w.org\/images\/core\/emoji\/11\/svg\/1f525.svg","type":"","width":"","height":""}],"author":"Ahmad Awais","twitter_card":"summary_large_image","twitter_creator":"@MrAhmadAwais","twitter_site":"@MrAhmadAwais","twitter_misc":{"Written by":"Ahmad Awais","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/ahmadawais.com\/install-pip-macos-os-x-python\/#article","isPartOf":{"@id":"https:\/\/ahmadawais.com\/install-pip-macos-os-x-python\/"},"author":{"name":"Ahmad Awais","@id":"https:\/\/ahmadawais.com\/#\/schema\/person\/1d1b9504182dca2315cf039fb4ebb85b"},"headline":"QuickTip: How Do I Install pip on macOS or OS X?","datePublished":"2017-09-08T10:46:33+00:00","dateModified":"2021-11-14T08:35:23+00:00","mainEntityOfPage":{"@id":"https:\/\/ahmadawais.com\/install-pip-macos-os-x-python\/"},"wordCount":382,"commentCount":133,"publisher":{"@id":"https:\/\/ahmadawais.com\/#\/schema\/person\/1d1b9504182dca2315cf039fb4ebb85b"},"image":{"@id":"https:\/\/ahmadawais.com\/install-pip-macos-os-x-python\/#primaryimage"},"thumbnailUrl":"https:\/\/s.w.org\/images\/core\/emoji\/11\/svg\/1f525.svg","keywords":["pip","python"],"articleSection":["Mac"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/ahmadawais.com\/install-pip-macos-os-x-python\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/ahmadawais.com\/install-pip-macos-os-x-python\/","url":"https:\/\/ahmadawais.com\/install-pip-macos-os-x-python\/","name":"QuickTip: How Do I Install pip on macOS or OS X?","isPartOf":{"@id":"https:\/\/ahmadawais.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/ahmadawais.com\/install-pip-macos-os-x-python\/#primaryimage"},"image":{"@id":"https:\/\/ahmadawais.com\/install-pip-macos-os-x-python\/#primaryimage"},"thumbnailUrl":"https:\/\/s.w.org\/images\/core\/emoji\/11\/svg\/1f525.svg","datePublished":"2017-09-08T10:46:33+00:00","dateModified":"2021-11-14T08:35:23+00:00","description":"Install pip for Python on macOS or OSX in one single command via command line. Easiest possible way!","breadcrumb":{"@id":"https:\/\/ahmadawais.com\/install-pip-macos-os-x-python\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ahmadawais.com\/install-pip-macos-os-x-python\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ahmadawais.com\/install-pip-macos-os-x-python\/#primaryimage","url":"https:\/\/s.w.org\/images\/core\/emoji\/11\/svg\/1f525.svg","contentUrl":"https:\/\/s.w.org\/images\/core\/emoji\/11\/svg\/1f525.svg"},{"@type":"BreadcrumbList","@id":"https:\/\/ahmadawais.com\/install-pip-macos-os-x-python\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/ahmadawais.com\/"},{"@type":"ListItem","position":2,"name":"QuickTip: How Do I Install pip on macOS or OS X?"}]},{"@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\/2853","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=2853"}],"version-history":[{"count":5,"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/posts\/2853\/revisions"}],"predecessor-version":[{"id":7725,"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/posts\/2853\/revisions\/7725"}],"wp:attachment":[{"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/media?parent=2853"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/categories?post=2853"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/tags?post=2853"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}