{"id":38094,"date":"2025-07-31T13:30:24","date_gmt":"2025-07-31T20:30:24","guid":{"rendered":"https:\/\/cloudinary.com\/blog\/?p=38094"},"modified":"2025-08-01T11:42:48","modified_gmt":"2025-08-01T18:42:48","slug":"how-to-add-python-to-path-and-why-it-matters","status":"publish","type":"post","link":"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/","title":{"rendered":"How to Add Python to PATH \u2013 and Why It Matters"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">Question:<\/h3>\n\n\n\n<p>Hey all!<\/p>\n\n\n\n<p>I\u2019m just getting started with Python and trying to run scripts from the command line, but I keep running into this error:<\/p>\n\n\n\n<p><code>'python' is not recognized as an internal or external command<\/code><\/p>\n\n\n\n<p>I installed Python from the official website (on Windows), but it seems like something&#8217;s missing. Do I need to add Python to PATH manually?<\/p>\n\n\n\n<p>If someone could walk me through what PATH is and how to add Python to it (especially on Windows), that would be amazing.<\/p>\n\n\n\n<p>Thanks in advance!<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Answer:<\/h3>\n\n\n\n<p>The error you&#8217;re getting is extremely common for beginners. It usually means Python was installed, but the system doesn\u2019t know where to find it when you type <code>python<\/code> in the terminal.<\/p>\n\n\n\n<p>The fix? You need to add Python to PATH.<\/p>\n\n\n\n<p>Let\u2019s break it all down: what PATH is, how to add Python to it on Windows\/macOS\/Linux, and how this ties in with tools like Cloudinary if you&#8217;re using Python for image uploads or automation.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is PATH, and Why Does Python Care?<\/h2>\n\n\n\n<p><code>PATH<\/code> is an environment variable, basically a list of folders your system searches when you run a command in the terminal.<\/p>\n\n\n\n<p>When you type <code>python<\/code> in your terminal, your system looks through each directory in the PATH list and tries to find an executable named <code>python<\/code>. If Python isn&#8217;t in one of those folders, you&#8217;ll get<\/p>\n\n\n\n<p><code>'python' is not recognized...<\/code><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Add Python to PATH on Windows<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Option 1: Check During Installation<\/h3>\n\n\n\n<p>When installing Python from<a href=\"https:\/\/www.python.org\/\"> python.org<\/a>, you&#8217;ll see this checkbox at the bottom of the setup screen:<\/p>\n\n\n\n<p>\u2611 Add Python to PATH<\/p>\n\n\n\n<p><strong>Always check this.<\/strong> It\u2019s the easiest way to avoid issues.<\/p>\n\n\n\n<p>If you&#8217;ve already installed Python and didn\u2019t check the box, use Option 2 below.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Option 2: Add Python to PATH Manually<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Find your python installation directory. Example paths:\n<ul class=\"wp-block-list\">\n<li><code>C:\\Users\\YourName\\AppData\\Local\\Programs\\Python\\Python311<\/code><\/li>\n\n\n\n<li><code>C:\\Python39\\<\/code><\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>Copy these two paths:\n<ul class=\"wp-block-list\">\n<li>The main folder (e.g., <code>C:\\Python311\\<\/code>)<\/li>\n\n\n\n<li>The Scripts folder (e.g., <code>C:\\Python311\\Scripts\\<\/code>)<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>Update environment variables.\n<ul class=\"wp-block-list\">\n<li>Open Start \u2192 Search for <strong>Environment Variables<\/strong>.<\/li>\n\n\n\n<li>Click <strong>Edit the system environment variables<\/strong>.<\/li>\n\n\n\n<li>Click <strong>Environment Variables<\/strong>.<\/li>\n\n\n\n<li>Under <strong>System variables<\/strong>, find <strong>Path<\/strong>, then click <strong>Edit<\/strong>.<\/li>\n\n\n\n<li>Click <strong>New<\/strong> and paste each path.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>Apply and restart terminal.\n<ul class=\"wp-block-list\">\n<li>Open a new command prompt and type <code>python --version<\/code>. If everything worked, you\u2019ll see the installed Python version.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">macOS and Linux: Adding Python to PATH<\/h2>\n\n\n\n<p>On most Unix-based systems, Python is already installed, but it may be under <code>python3<\/code>.<\/p>\n\n\n\n<p>To check, try the terminal command <code>which python3<\/code>. To make <code>python<\/code> run Python 3, add an alias in your shell config:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-1\" data-shcb-language-name=\"PHP\" data-shcb-language-slug=\"php\"><span><code class=\"hljs language-php shcb-wrap-lines\">alias python=python3\n\n<span class=\"hljs-comment\"># Then run:<\/span>\n\nsource ~\/.bashrc\n\n<span class=\"hljs-comment\"># or:<\/span>\n\nsource ~\/.zshrc<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-1\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">PHP<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">php<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>You can also use:<\/p>\n\n\n\n<p><code>export PATH=\"\/usr\/local\/bin\/python3:$PATH\"<\/code><\/p>\n\n\n\n<p>If you installed Python via brew, you can link it like so:<\/p>\n\n\n\n<p><code>brew install python<\/code><\/p>\n\n\n\n<p><code>brew link python<\/code><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Verify It Works<\/h2>\n\n\n\n<p>Run the following in your terminal:<\/p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs shcb-wrap-lines\">python --version\n\npip --version<\/code><\/span><\/pre>\n\n\n<p>Both should return versions, not errors. You\u2019re good to go!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Still Not Working?<\/h2>\n\n\n\n<p>Check:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Did you restart your terminal?<\/li>\n\n\n\n<li>Is your Python version conflicting with an older version?<\/li>\n\n\n\n<li>Are you using PowerShell, Git Bash, or WSL?<\/li>\n<\/ul>\n\n\n\n<p>Sometimes using a tool like Anaconda or<a href=\"https:\/\/github.com\/pyenv\/pyenv\"> <\/a>uv can help manage environments more cleanly.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>TL;DR<\/strong>: How to Add Python to PATH<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Step<\/strong><\/td><td><strong>Details<\/strong><\/td><\/tr><tr><td><strong>On Windows<\/strong><\/td><td>Reinstall Python with \u201cAdd to PATH\u201d checked, or edit env vars manually<\/td><\/tr><tr><td><strong>On macOS\/Linux<\/strong><\/td><td>Use <code>alias<\/code> or <code>export PATH<\/code> in shell config<\/td><\/tr><tr><td><strong>Test it<\/strong><\/td><td>Run <code>python --version<\/code> in terminal<\/td><\/tr><tr><td><strong>Use in projects<\/strong><\/td><td>Cloudinary scripts and CLI tools need it on PATH<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Final Thoughts<\/h2>\n\n\n\n<p>Knowing how to add Python to PATH is one of those behind-the-scenes skills that makes your dev life smoother, especially when installing it on new machines or dev environments based on Windows.<\/p>\n\n\n\n<p>And if you\u2019re using Cloudinary to handle images in your app, having Python correctly configured lets you tap into the full power of our SDKs for uploading, transforming, and delivering media on the fly.<\/p>\n\n\n\n<p>Need help setting up Cloudinary\u2019s Python SDK or automating media uploads from the command line? We\u2019ve got docs and code samples to help.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Question: Hey all! I\u2019m just getting started with Python and trying to run scripts from the command line, but I keep running into this error: &#8216;python&#8217; is not recognized as an internal or external command I installed Python from the official website (on Windows), but it seems like something&#8217;s missing. Do I need to add [&hellip;]<\/p>\n","protected":false},"author":88,"featured_media":38095,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_cloudinary_featured_overwrite":false,"footnotes":""},"categories":[1],"tags":[423],"class_list":["post-38094","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-questions"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.6 (Yoast SEO v26.9) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Add Python to PATH \u2013 and Why It Matters<\/title>\n<meta name=\"description\" content=\"Question: Hey all! I\u2019m just getting started with Python and trying to run scripts from the command line, but I keep running into this error: &#039;python&#039; is\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Add Python to PATH \u2013 and Why It Matters\" \/>\n<meta property=\"og:description\" content=\"Question: Hey all! I\u2019m just getting started with Python and trying to run scripts from the command line, but I keep running into this error: &#039;python&#039; is\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/\" \/>\n<meta property=\"og:site_name\" content=\"Cloudinary Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-07-31T20:30:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-01T18:42:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1753993652\/add_python_to_path_featured_image\/add_python_to_path_featured_image.jpg?_i=AA\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"damjanantevski\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"NewsArticle\",\"@id\":\"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/\"},\"author\":{\"name\":\"damjanantevski\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/43592e43c12520a1e867d456b1e8cf7e\"},\"headline\":\"How to Add Python to PATH \u2013 and Why It Matters\",\"datePublished\":\"2025-07-31T20:30:24+00:00\",\"dateModified\":\"2025-08-01T18:42:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/\"},\"wordCount\":628,\"publisher\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1753993652\/add_python_to_path_featured_image\/add_python_to_path_featured_image.jpg?_i=AA\",\"keywords\":[\"Questions\"],\"inLanguage\":\"en-US\",\"copyrightYear\":\"2025\",\"copyrightHolder\":{\"@id\":\"https:\/\/cloudinary.com\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/\",\"url\":\"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/\",\"name\":\"How to Add Python to PATH \u2013 and Why It Matters\",\"isPartOf\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1753993652\/add_python_to_path_featured_image\/add_python_to_path_featured_image.jpg?_i=AA\",\"datePublished\":\"2025-07-31T20:30:24+00:00\",\"dateModified\":\"2025-08-01T18:42:48+00:00\",\"description\":\"Question: Hey all! I\u2019m just getting started with Python and trying to run scripts from the command line, but I keep running into this error: 'python' is\",\"breadcrumb\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/#primaryimage\",\"url\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1753993652\/add_python_to_path_featured_image\/add_python_to_path_featured_image.jpg?_i=AA\",\"contentUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1753993652\/add_python_to_path_featured_image\/add_python_to_path_featured_image.jpg?_i=AA\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cloudinary.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Add Python to PATH \u2013 and Why It Matters\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#website\",\"url\":\"https:\/\/cloudinary.com\/blog\/\",\"name\":\"Cloudinary Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cloudinary.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\",\"name\":\"Cloudinary Blog\",\"url\":\"https:\/\/cloudinary.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA\",\"contentUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA\",\"width\":312,\"height\":60,\"caption\":\"Cloudinary Blog\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/43592e43c12520a1e867d456b1e8cf7e\",\"name\":\"damjanantevski\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/3b40c995531fe4d510212a06c9d4fc666d2cb8efbfebc98a94191701accf4817?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/3b40c995531fe4d510212a06c9d4fc666d2cb8efbfebc98a94191701accf4817?s=96&d=mm&r=g\",\"caption\":\"damjanantevski\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Add Python to PATH \u2013 and Why It Matters","description":"Question: Hey all! I\u2019m just getting started with Python and trying to run scripts from the command line, but I keep running into this error: 'python' is","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:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/","og_locale":"en_US","og_type":"article","og_title":"How to Add Python to PATH \u2013 and Why It Matters","og_description":"Question: Hey all! I\u2019m just getting started with Python and trying to run scripts from the command line, but I keep running into this error: 'python' is","og_url":"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/","og_site_name":"Cloudinary Blog","article_published_time":"2025-07-31T20:30:24+00:00","article_modified_time":"2025-08-01T18:42:48+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1753993652\/add_python_to_path_featured_image\/add_python_to_path_featured_image.jpg?_i=AA","type":"image\/jpeg"}],"author":"damjanantevski","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"NewsArticle","@id":"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/#article","isPartOf":{"@id":"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/"},"author":{"name":"damjanantevski","@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/43592e43c12520a1e867d456b1e8cf7e"},"headline":"How to Add Python to PATH \u2013 and Why It Matters","datePublished":"2025-07-31T20:30:24+00:00","dateModified":"2025-08-01T18:42:48+00:00","mainEntityOfPage":{"@id":"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/"},"wordCount":628,"publisher":{"@id":"https:\/\/cloudinary.com\/blog\/#organization"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/#primaryimage"},"thumbnailUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1753993652\/add_python_to_path_featured_image\/add_python_to_path_featured_image.jpg?_i=AA","keywords":["Questions"],"inLanguage":"en-US","copyrightYear":"2025","copyrightHolder":{"@id":"https:\/\/cloudinary.com\/#organization"}},{"@type":"WebPage","@id":"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/","url":"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/","name":"How to Add Python to PATH \u2013 and Why It Matters","isPartOf":{"@id":"https:\/\/cloudinary.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/#primaryimage"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/#primaryimage"},"thumbnailUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1753993652\/add_python_to_path_featured_image\/add_python_to_path_featured_image.jpg?_i=AA","datePublished":"2025-07-31T20:30:24+00:00","dateModified":"2025-08-01T18:42:48+00:00","description":"Question: Hey all! I\u2019m just getting started with Python and trying to run scripts from the command line, but I keep running into this error: 'python' is","breadcrumb":{"@id":"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/#primaryimage","url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1753993652\/add_python_to_path_featured_image\/add_python_to_path_featured_image.jpg?_i=AA","contentUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1753993652\/add_python_to_path_featured_image\/add_python_to_path_featured_image.jpg?_i=AA","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/cloudinary.com\/blog\/questions\/how-to-add-python-to-path-and-why-it-matters\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudinary.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Add Python to PATH \u2013 and Why It Matters"}]},{"@type":"WebSite","@id":"https:\/\/cloudinary.com\/blog\/#website","url":"https:\/\/cloudinary.com\/blog\/","name":"Cloudinary Blog","description":"","publisher":{"@id":"https:\/\/cloudinary.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudinary.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/cloudinary.com\/blog\/#organization","name":"Cloudinary Blog","url":"https:\/\/cloudinary.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA","contentUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA","width":312,"height":60,"caption":"Cloudinary Blog"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/43592e43c12520a1e867d456b1e8cf7e","name":"damjanantevski","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/3b40c995531fe4d510212a06c9d4fc666d2cb8efbfebc98a94191701accf4817?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3b40c995531fe4d510212a06c9d4fc666d2cb8efbfebc98a94191701accf4817?s=96&d=mm&r=g","caption":"damjanantevski"}}]}},"jetpack_featured_media_url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1753993652\/add_python_to_path_featured_image\/add_python_to_path_featured_image.jpg?_i=AA","_links":{"self":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/38094","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/users\/88"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/comments?post=38094"}],"version-history":[{"count":3,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/38094\/revisions"}],"predecessor-version":[{"id":38113,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/38094\/revisions\/38113"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/media\/38095"}],"wp:attachment":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/media?parent=38094"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/categories?post=38094"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/tags?post=38094"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}