{"id":5840,"date":"2025-12-24T04:54:11","date_gmt":"2025-12-24T04:54:11","guid":{"rendered":"https:\/\/thumbtube.com\/blog\/?p=5840"},"modified":"2025-12-24T05:06:04","modified_gmt":"2025-12-24T05:06:04","slug":"how-to-fix-command-swig-failed-no-such-file-or-directory","status":"publish","type":"post","link":"https:\/\/thumbtube.com\/blog\/how-to-fix-command-swig-failed-no-such-file-or-directory\/","title":{"rendered":"How to Fix \u201cCommand \u2018swig\u2019 Failed: No Such File or Directory\u201d"},"content":{"rendered":"<p>You&#8217;re coding something amazing, life is good\u2026 until BAM! The terminal throws a scary error at you:<\/p>\n<p><b><i>\u201cCommand \u2018swig\u2019 failed: No such file or directory\u201d<\/i><\/b><\/p>\n<p>Don&#8217;t worry. You&#8217;re not alone, and no, your computer isn\u2019t broken. This error just means your system is missing a tool called <b>SWIG<\/b>. Let\u2019s break it down and fix it together. \ud83d\ude80<\/p>\n<h2>TLDR:<\/h2>\n<p>This error happens when your computer can\u2019t find the <b>SWIG<\/b> program. SWIG is needed to help certain Python packages work, especially ones written in C or C++. You can fix it by simply <b>installing SWIG<\/b> using your system\u2019s package manager. Once installed, the error should disappear like magic.<\/p>\n<hr>\n<h2>So\u2026 What in the World Is SWIG?<\/h2>\n<p>SWIG stands for <i>Simplified Wrapper and Interface Generator<\/i>. Fancy name, right? Basically, it helps different programming languages talk to each other \u2014 especially when mixing Python with C or C++.<\/p>\n<p>Some Python packages (like <i>face recognition<\/i>, <i>dlib<\/i>, or <i>PyTorch extensions<\/i>) need SWIG to compile parts of their code.<\/p>\n<p>If your computer doesn\u2019t know where SWIG is, it screams this error:<\/p>\n<pre><code>Command \u2018swig\u2019 failed: No such file or directory<\/code><\/pre>\n<h2>How to Tell If You Really Need SWIG<\/h2>\n<p>If you see the error above and you\u2019re trying to install something like:<\/p>\n<ul>\n<li><i>dlib<\/i><\/li>\n<li><i>face_recognition<\/i><\/li>\n<li><i>PyAudio<\/i><\/li>\n<li>Or some other package using C\/C++ in Python<\/li>\n<\/ul>\n<p>Then yes, you need SWIG. Let\u2019s install it!<\/p>\n<h2>Step-by-step: Installing SWIG (it\u2019s easy!)<\/h2>\n<h3>\ud83d\udda5\ufe0f For macOS Users:<\/h3>\n<p>Use Homebrew! If you don\u2019t have Homebrew installed yet, install it <a href=\"https:\/\/brew.sh\/\">here<\/a> first.<\/p>\n<pre><code>brew install swig<\/code><\/pre>\n<h3>\ud83d\udc27 For Ubuntu or Debian Users:<\/h3>\n<pre><code>sudo apt update\nsudo apt install swig<\/code><\/pre>\n<h3>\ud83d\udcbb For Windows Users:<\/h3>\n<p>Follow these steps to avoid headaches:<\/p>\n<ol>\n<li>Go to the official SWIG website: <a href=\"http:\/\/www.swig.org\/download.html\">http:\/\/www.swig.org\/download.html<\/a><\/li>\n<li>Download the latest Windows zip version.<\/li>\n<li>Unzip it anywhere (like C:\\swig).<\/li>\n<li>Now, add SWIG to your system\u2019s Environment Variables:<\/li>\n<ul>\n<li>Open Control Panel -&gt; System -&gt; Advanced Settings<\/li>\n<li>Click on &#8220;Environment Variables&#8221;<\/li>\n<li>Under &#8220;System variables&#8221;, find the &#8220;Path&#8221; variable, click Edit<\/li>\n<li>Add the folder where swig.exe is located (like <code>C:\\swig<\/code>)<\/li>\n<\/ul>\n<li>Click OK, then open a fresh terminal and type:<\/li>\n<\/ol>\n<pre><code>swig -version<\/code><\/pre>\n<p>You should see a SWIG version appear = \ud83c\udf1f Success!<\/p>\n<img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"1436\" src=\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-logo-of-a-coffee-shop-on-a-building-terminal-swig-mac-ubuntu-windows.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-logo-of-a-coffee-shop-on-a-building-terminal-swig-mac-ubuntu-windows.jpg 1080w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-logo-of-a-coffee-shop-on-a-building-terminal-swig-mac-ubuntu-windows-226x300.jpg 226w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-logo-of-a-coffee-shop-on-a-building-terminal-swig-mac-ubuntu-windows-770x1024.jpg 770w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-logo-of-a-coffee-shop-on-a-building-terminal-swig-mac-ubuntu-windows-768x1021.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" \/>\n<h2>Still Not Working?<\/h2>\n<p>Let\u2019s do a few quick checks.<\/p>\n<h3>1. Confirm SWIG Is Installed<\/h3>\n<pre><code>swig -version<\/code><\/pre>\n<p>If it says something like &#8220;command not found,&#8221; SWIG is not installed properly or your system can\u2019t find it. Try restarting your terminal or double-check the installation.<\/p>\n<h3>2. Did You Restart After Installing?<\/h3>\n<p>On Windows especially, changes to Path don\u2019t take effect until you restart the command prompt or terminal. Close it and start a new one.<\/p>\n<h3>3. Still \u201cNo Such File or Directory\u201d?<\/h3>\n<p>Try checking the full error message. If the error is now different, that\u2019s actually good news \u2014 it means SWIG was found, and now the problem lies elsewhere in the code or dependencies.<\/p>\n<h2>Bonus: Installing With pip + System Tools<\/h2>\n<p>Sometimes pip tries to build packages that need a compiler + SWIG. Here\u2019s how you can make life easier:<\/p>\n<ul>\n<li><b>macOS:<\/b> <code>xcode-select --install<\/code> helps get the tools you need<\/li>\n<li><b>Ubuntu:<\/b>\n<pre><code>sudo apt install build-essential python3-dev<\/code><\/pre>\n<\/li>\n<li><b>Windows:<\/b> Install the \u201cBuild Tools for Visual Studio\u201d from Microsoft<\/li>\n<\/ul>\n<p>These ensure that when Python packages build C\/C++ stuff (with SWIG), they\u2019ve got the tools to succeed.<\/p>\n<img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"721\" src=\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/shallow-focus-photo-of-python-book-python-error-swig-compiling-code.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/shallow-focus-photo-of-python-book-python-error-swig-compiling-code.jpg 1080w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/shallow-focus-photo-of-python-book-python-error-swig-compiling-code-300x200.jpg 300w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/shallow-focus-photo-of-python-book-python-error-swig-compiling-code-1024x684.jpg 1024w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/shallow-focus-photo-of-python-book-python-error-swig-compiling-code-768x513.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" \/>\n<h2>Why Did pip Not Tell You About SWIG?<\/h2>\n<p>pip can\u2019t install everything. Especially not system-wide tools like SWIG. That\u2019s why this kind of error pops up. It expects that your system already has these tools ready.<\/p>\n<p>Think of it like baking a cake with a missing spoon. The recipe says, &#8220;mix the batter,&#8221; but you don\u2019t have the spoon. You gotta get it yourself before following the recipe.<\/p>\n<h2>How to Avoid This in Future<\/h2>\n<p>Here are some tips so you don\u2019t see this error again:<\/p>\n<ul>\n<li>Read the doc of the package before installing, especially if it&#8217;s built from source.<\/li>\n<li>Use pre-built binaries when available (like wheel files).<\/li>\n<li>Set up a virtual environment with all dependencies pre-installed.<\/li>\n<li>Use Docker or containers for repeatable builds.<\/li>\n<\/ul>\n<h2>Extra Tip: Use conda if You Can<\/h2>\n<p>If you&#8217;re using <b>Anaconda<\/b> or <b>miniconda<\/b>, try installing with conda instead of pip:<\/p>\n<pre><code>conda install -c conda-forge swig<\/code><\/pre>\n<p>It often solves the problem by handling dependencies for you.<\/p>\n<h2>That\u2019s It!<\/h2>\n<p>You now know what SWIG is, why your computer cried about it, and how to get things back on track. \ud83e\udd13<\/p>\n<p>Next time you see \u201c<i>Command \u2018swig\u2019 failed<\/i>,\u201d put on your SWIG cape and fix it like a programming superhero.<\/p>\n<hr>\n<h2>Quick Recap:<\/h2>\n<ul>\n<li>Error means SWIG tool is missing<\/li>\n<li>Install SWIG based on your OS<\/li>\n<li>Check version with <code>swig -version<\/code><\/li>\n<li>Use system compilers if needed<\/li>\n<li>Error goes away. You win \ud83d\udcaa<\/li>\n<\/ul>\n<p>Happy coding!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>You&#8217;re coding something amazing, life is good\u2026 until BAM! The terminal throws a scary error &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to Fix \u201cCommand \u2018swig\u2019 Failed: No Such File or Directory\u201d\" class=\"read-more button\" href=\"https:\/\/thumbtube.com\/blog\/how-to-fix-command-swig-failed-no-such-file-or-directory\/#more-5840\" aria-label=\"Read more about How to Fix \u201cCommand \u2018swig\u2019 Failed: No Such File or Directory\u201d\">Read More<\/a><\/p>\n","protected":false},"author":78,"featured_media":5841,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8],"tags":[],"class_list":["post-5840","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-guides","infinite-scroll-item","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-25","no-featured-image-padding"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Fix \u201cCommand \u2018swig\u2019 Failed: No Such File or Directory\u201d - ThumbTube<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/thumbtube.com\/blog\/how-to-fix-command-swig-failed-no-such-file-or-directory\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Fix \u201cCommand \u2018swig\u2019 Failed: No Such File or Directory\u201d - ThumbTube\" \/>\n<meta property=\"og:description\" content=\"You&#8217;re coding something amazing, life is good\u2026 until BAM! The terminal throws a scary error ... Read More\" \/>\n<meta property=\"og:url\" content=\"https:\/\/thumbtube.com\/blog\/how-to-fix-command-swig-failed-no-such-file-or-directory\/\" \/>\n<meta property=\"og:site_name\" content=\"ThumbTube\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-24T04:54:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-24T05:06:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-laptop-computer-sitting-on-top-of-a-desk-terminal-swig-mac-ubuntu-windows.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1080\" \/>\n\t<meta property=\"og:image:height\" content=\"1620\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Ethan Martinez\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ethan Martinez\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/thumbtube.com\/blog\/how-to-fix-command-swig-failed-no-such-file-or-directory\/\",\"url\":\"https:\/\/thumbtube.com\/blog\/how-to-fix-command-swig-failed-no-such-file-or-directory\/\",\"name\":\"How to Fix \u201cCommand \u2018swig\u2019 Failed: No Such File or Directory\u201d - ThumbTube\",\"isPartOf\":{\"@id\":\"https:\/\/thumbtube.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/thumbtube.com\/blog\/how-to-fix-command-swig-failed-no-such-file-or-directory\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/thumbtube.com\/blog\/how-to-fix-command-swig-failed-no-such-file-or-directory\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-laptop-computer-sitting-on-top-of-a-desk-terminal-swig-mac-ubuntu-windows.jpg\",\"datePublished\":\"2025-12-24T04:54:11+00:00\",\"dateModified\":\"2025-12-24T05:06:04+00:00\",\"author\":{\"@id\":\"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/4fe17b14e96eaa537d646cb9ae441583\"},\"breadcrumb\":{\"@id\":\"https:\/\/thumbtube.com\/blog\/how-to-fix-command-swig-failed-no-such-file-or-directory\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/thumbtube.com\/blog\/how-to-fix-command-swig-failed-no-such-file-or-directory\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thumbtube.com\/blog\/how-to-fix-command-swig-failed-no-such-file-or-directory\/#primaryimage\",\"url\":\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-laptop-computer-sitting-on-top-of-a-desk-terminal-swig-mac-ubuntu-windows.jpg\",\"contentUrl\":\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-laptop-computer-sitting-on-top-of-a-desk-terminal-swig-mac-ubuntu-windows.jpg\",\"width\":1080,\"height\":1620},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/thumbtube.com\/blog\/how-to-fix-command-swig-failed-no-such-file-or-directory\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/thumbtube.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Fix \u201cCommand \u2018swig\u2019 Failed: No Such File or Directory\u201d\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/thumbtube.com\/blog\/#website\",\"url\":\"https:\/\/thumbtube.com\/blog\/\",\"name\":\"ThumbTube\",\"description\":\"Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/thumbtube.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/4fe17b14e96eaa537d646cb9ae441583\",\"name\":\"Ethan Martinez\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/993fbfe1588a77db452e8ea37ed7fcba?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/993fbfe1588a77db452e8ea37ed7fcba?s=96&d=mm&r=g\",\"caption\":\"Ethan Martinez\"},\"description\":\"I'm Ethan Martinez, a tech writer focused on cloud computing and SaaS solutions. I provide insights into the latest cloud technologies and services to keep readers informed.\",\"url\":\"https:\/\/thumbtube.com\/blog\/author\/ethan\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Fix \u201cCommand \u2018swig\u2019 Failed: No Such File or Directory\u201d - ThumbTube","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:\/\/thumbtube.com\/blog\/how-to-fix-command-swig-failed-no-such-file-or-directory\/","og_locale":"en_US","og_type":"article","og_title":"How to Fix \u201cCommand \u2018swig\u2019 Failed: No Such File or Directory\u201d - ThumbTube","og_description":"You&#8217;re coding something amazing, life is good\u2026 until BAM! The terminal throws a scary error ... Read More","og_url":"https:\/\/thumbtube.com\/blog\/how-to-fix-command-swig-failed-no-such-file-or-directory\/","og_site_name":"ThumbTube","article_published_time":"2025-12-24T04:54:11+00:00","article_modified_time":"2025-12-24T05:06:04+00:00","og_image":[{"width":1080,"height":1620,"url":"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-laptop-computer-sitting-on-top-of-a-desk-terminal-swig-mac-ubuntu-windows.jpg","type":"image\/jpeg"}],"author":"Ethan Martinez","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Ethan Martinez","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/thumbtube.com\/blog\/how-to-fix-command-swig-failed-no-such-file-or-directory\/","url":"https:\/\/thumbtube.com\/blog\/how-to-fix-command-swig-failed-no-such-file-or-directory\/","name":"How to Fix \u201cCommand \u2018swig\u2019 Failed: No Such File or Directory\u201d - ThumbTube","isPartOf":{"@id":"https:\/\/thumbtube.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/thumbtube.com\/blog\/how-to-fix-command-swig-failed-no-such-file-or-directory\/#primaryimage"},"image":{"@id":"https:\/\/thumbtube.com\/blog\/how-to-fix-command-swig-failed-no-such-file-or-directory\/#primaryimage"},"thumbnailUrl":"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-laptop-computer-sitting-on-top-of-a-desk-terminal-swig-mac-ubuntu-windows.jpg","datePublished":"2025-12-24T04:54:11+00:00","dateModified":"2025-12-24T05:06:04+00:00","author":{"@id":"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/4fe17b14e96eaa537d646cb9ae441583"},"breadcrumb":{"@id":"https:\/\/thumbtube.com\/blog\/how-to-fix-command-swig-failed-no-such-file-or-directory\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/thumbtube.com\/blog\/how-to-fix-command-swig-failed-no-such-file-or-directory\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thumbtube.com\/blog\/how-to-fix-command-swig-failed-no-such-file-or-directory\/#primaryimage","url":"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-laptop-computer-sitting-on-top-of-a-desk-terminal-swig-mac-ubuntu-windows.jpg","contentUrl":"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-laptop-computer-sitting-on-top-of-a-desk-terminal-swig-mac-ubuntu-windows.jpg","width":1080,"height":1620},{"@type":"BreadcrumbList","@id":"https:\/\/thumbtube.com\/blog\/how-to-fix-command-swig-failed-no-such-file-or-directory\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/thumbtube.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Fix \u201cCommand \u2018swig\u2019 Failed: No Such File or Directory\u201d"}]},{"@type":"WebSite","@id":"https:\/\/thumbtube.com\/blog\/#website","url":"https:\/\/thumbtube.com\/blog\/","name":"ThumbTube","description":"Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/thumbtube.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/4fe17b14e96eaa537d646cb9ae441583","name":"Ethan Martinez","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/993fbfe1588a77db452e8ea37ed7fcba?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/993fbfe1588a77db452e8ea37ed7fcba?s=96&d=mm&r=g","caption":"Ethan Martinez"},"description":"I'm Ethan Martinez, a tech writer focused on cloud computing and SaaS solutions. I provide insights into the latest cloud technologies and services to keep readers informed.","url":"https:\/\/thumbtube.com\/blog\/author\/ethan\/"}]}},"_links":{"self":[{"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/posts\/5840"}],"collection":[{"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/users\/78"}],"replies":[{"embeddable":true,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/comments?post=5840"}],"version-history":[{"count":1,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/posts\/5840\/revisions"}],"predecessor-version":[{"id":5909,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/posts\/5840\/revisions\/5909"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/media\/5841"}],"wp:attachment":[{"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/media?parent=5840"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/categories?post=5840"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/tags?post=5840"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}