{"id":13862,"date":"2024-05-28T20:15:08","date_gmt":"2024-05-28T17:15:08","guid":{"rendered":"http:\/\/local.brightwhiz\/?p=13862"},"modified":"2024-05-28T20:15:09","modified_gmt":"2024-05-28T17:15:09","slug":"how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat","status":"publish","type":"post","link":"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/","title":{"rendered":"Guide to Installing Rust Programming Language on Ubuntu 24.04 Noble Numbat"},"content":{"rendered":"\n

Rust is a systems programming language that runs blazingly fast, prevents segfaults, and guarantees thread safety. With its growing popularity for performance-critical applications, learning to install and use Rust can be a valuable addition to your programming toolkit. This guide will walk you through the steps to install Rust<\/a> on Ubuntu<\/a> 24.04 LTS.<\/p>\n\n\n\n

Why Rust?<\/h3>\n\n\n\n

Rust’s memory safety guarantees without needing a garbage collector make it a unique and powerful language for various applications, from web development to embedded systems<\/a>. It\u2019s designed to provide better memory safety while maintaining high performance, making it a favorite among developers.<\/p>\n\n\n\n

Prerequisites<\/h3>\n\n\n\n

Before starting the installation process, ensure you have:<\/p>\n\n\n\n

    \n
  1. A system running Ubuntu 24.04 LTS.<\/li>\n\n\n\n
  2. Sudo privileges.<\/li>\n<\/ol>\n\n\n\n

    Step-by-Step Installation Guide<\/h2>\n\n\n\n

    Step 1: Update Your System<\/h3>\n\n\n\n

    First, update your package index to ensure you have the latest information on available packages:<\/p>\n\n\n\n

    $ sudo apt update\n$ sudo apt upgrade -y<\/code><\/pre>\n\n\n\n

    Step 2: Install Dependencies<\/h3>\n\n\n\n

    Install the necessary dependencies that Rust needs to compile code and manage packages:<\/p>\n\n\n\n

    $ sudo apt install -y build-essential curl<\/code><\/pre>\n\n\n\n

    Step 3: Install Rust Using rustup<\/h3>\n\n\n\n

    The recommended way to install Rust is using rustup<\/code>, a toolchain installer for Rust. It installs Rust and manages updates and versions.<\/p>\n\n\n\n

      \n
    1. Download and run the rustup installation script<\/strong>:<\/li>\n<\/ol>\n\n\n\n
      $ curl --proto '=https' --tlsv1.2 -sSf https:\/\/sh.rustup.rs | sh<\/code><\/pre>\n\n\n\n
        \n
      1. Follow the on-screen instructions<\/strong>: The script will prompt you to proceed with the installation. Press 1<\/code> to proceed with the default installation.<\/li>\n\n\n\n
      2. Configure your current shell<\/strong>: After installation, you need to configure your current shell to use the Rust environment. This can be done by running:<\/li>\n<\/ol>\n\n\n\n
        $ source $HOME\/.cargo\/env<\/code><\/pre>\n\n\n\n

        Step 4: Verify the Installation<\/h3>\n\n\n\n

        To confirm that Rust is installed correctly, you can check the installed version:<\/p>\n\n\n\n

        $ rustc --version<\/code><\/pre>\n\n\n\n

        You should see output similar to:<\/p>\n\n\n\n

        $ rustc 1.78.0 (9b00957e5 2024-04-29)<\/code><\/pre>\n\n\n\n

        Step 5: Update Rust<\/h3>\n\n\n\n

        Rust is regularly updated with new features, improvements, and bug fixes. To ensure you have the latest version, you can update Rust using rustup:<\/p>\n\n\n\n

        $ rustup update<\/code><\/pre>\n\n\n\n

        Step 6: Install and Use Cargo<\/h3>\n\n\n\n

        Cargo is Rust’s package manager and build system. It is installed automatically with Rust. You can verify the Cargo installation by checking its version:<\/p>\n\n\n\n

        $ cargo --version<\/code><\/pre>\n\n\n\n

        Step 7: Create and Run a Simple Rust Program<\/h3>\n\n\n\n

        Now that Rust and Cargo are installed, you can create a simple Rust project to test your setup.<\/p>\n\n\n\n

          \n
        1. Create a new project<\/strong>:<\/li>\n<\/ol>\n\n\n\n
          $ cargo new hello_world\n$ cd hello_world<\/code><\/pre>\n\n\n\n

          This command creates a new directory named hello_world<\/code> with a simple Rust project structure.<\/p>\n\n\n\n

            \n
          1. Build the project<\/strong>:<\/li>\n<\/ol>\n\n\n\n
            $ cargo build<\/code><\/pre>\n\n\n\n
              \n
            1. Run the project<\/strong>:<\/li>\n<\/ol>\n\n\n\n
              $ cargo run<\/code><\/pre>\n\n\n\n

              You should see the output:<\/p>\n\n\n\n

              Hello, world!<\/code><\/pre>\n\n\n\n

              Conclusion<\/h3>\n\n\n\n

              Congratulations! You have successfully installed the Rust programming language on your Ubuntu 24.04 LTS system. You are now ready to start exploring Rust’s powerful features and write safe, concurrent, and fast code. For more information on using Rust, check out the official Rust documentation<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"

              Rust is a systems programming language that runs blazingly fast, prevents segfaults, and guarantees thread safety. With its growing popularity for performance-critical applications, learning to install and use Rust can…<\/p>\n","protected":false},"author":1,"featured_media":13921,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,23,9,27,28,16,18],"tags":[193,220,350,354,433,449,515,526,544,545,572,573,591,598],"yoast_head":"\nHow to Install Rust Programming Language on Ubuntu 24.04 LTS<\/title>\n<meta name=\"description\" content=\"This guide will walk you through the steps to install Rust programming language on Ubuntu 24.04 Noble Numbat LTS Linux System\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Rust Programming Language on Ubuntu 24.04 LTS\" \/>\n<meta property=\"og:description\" content=\"This guide will walk you through the steps to install Rust programming language on Ubuntu 24.04 Noble Numbat LTS Linux System\" \/>\n<meta property=\"og:url\" content=\"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/\" \/>\n<meta property=\"og:site_name\" content=\"Brightwhiz.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/brightwhiz\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-05-28T17:15:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-05-28T17:15:09+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-Rust-Programming-Language-on-Ubuntu-22.04.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Michael Bright\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:site\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Michael Bright\" \/>\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\":\"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/\"},\"author\":{\"name\":\"Michael Bright\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\"},\"headline\":\"Guide to Installing Rust Programming Language on Ubuntu 24.04 Noble Numbat\",\"datePublished\":\"2024-05-28T17:15:08+00:00\",\"dateModified\":\"2024-05-28T17:15:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/\"},\"wordCount\":419,\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-Rust-Programming-Language-on-Ubuntu-22.04.jpg\",\"keywords\":[\"DevOps\",\"Embedded\",\"Libraries\",\"Linux\",\"Optimization\",\"Performance\",\"Rust\",\"Security\",\"Software development\",\"Software Engineering\",\"Systems\",\"Systems Administration\",\"Tools\",\"Ubuntu\"],\"articleSection\":[\"Articles\",\"Guides\",\"How To\",\"Programming\",\"Software\",\"Technology\",\"Tools\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/\",\"url\":\"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/\",\"name\":\"How to Install Rust Programming Language on Ubuntu 24.04 LTS\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-Rust-Programming-Language-on-Ubuntu-22.04.jpg\",\"datePublished\":\"2024-05-28T17:15:08+00:00\",\"dateModified\":\"2024-05-28T17:15:09+00:00\",\"description\":\"This guide will walk you through the steps to install Rust programming language on Ubuntu 24.04 Noble Numbat LTS Linux System\",\"breadcrumb\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/#primaryimage\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-Rust-Programming-Language-on-Ubuntu-22.04.jpg\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-Rust-Programming-Language-on-Ubuntu-22.04.jpg\",\"width\":1280,\"height\":680,\"caption\":\"Install Rust Programming Language on Ubuntu 22.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/local.brightwhiz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Guide to Installing Rust Programming Language on Ubuntu 24.04 Noble Numbat\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/local.brightwhiz\/#website\",\"url\":\"http:\/\/local.brightwhiz\/\",\"name\":\"Brightwhiz.com\",\"description\":\"Best Tech guides, Tutorials, and News\",\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/local.brightwhiz\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/local.brightwhiz\/#organization\",\"name\":\"Brightwhiz\",\"url\":\"http:\/\/local.brightwhiz\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"width\":706,\"height\":135,\"caption\":\"Brightwhiz\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/brightwhiz\/\",\"https:\/\/x.com\/brightwhizmag\",\"https:\/\/instagram.com\/bright_whiz\/\",\"https:\/\/www.pinterest.com\/sobbayi\/\",\"https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\",\"name\":\"Michael Bright\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"contentUrl\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"caption\":\"Michael Bright\"},\"sameAs\":[\"https:\/\/sobbayi.com\"],\"url\":\"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Rust Programming Language on Ubuntu 24.04 LTS","description":"This guide will walk you through the steps to install Rust programming language on Ubuntu 24.04 Noble Numbat LTS Linux System","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":"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Rust Programming Language on Ubuntu 24.04 LTS","og_description":"This guide will walk you through the steps to install Rust programming language on Ubuntu 24.04 Noble Numbat LTS Linux System","og_url":"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/","og_site_name":"Brightwhiz.com","article_publisher":"https:\/\/www.facebook.com\/brightwhiz\/","article_published_time":"2024-05-28T17:15:08+00:00","article_modified_time":"2024-05-28T17:15:09+00:00","og_image":[{"width":1280,"height":680,"url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-Rust-Programming-Language-on-Ubuntu-22.04.jpg","type":"image\/jpeg"}],"author":"Michael Bright","twitter_card":"summary_large_image","twitter_creator":"@brightwhizmag","twitter_site":"@brightwhizmag","twitter_misc":{"Written by":"Michael Bright","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/#article","isPartOf":{"@id":"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/"},"author":{"name":"Michael Bright","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32"},"headline":"Guide to Installing Rust Programming Language on Ubuntu 24.04 Noble Numbat","datePublished":"2024-05-28T17:15:08+00:00","dateModified":"2024-05-28T17:15:09+00:00","mainEntityOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/"},"wordCount":419,"publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-Rust-Programming-Language-on-Ubuntu-22.04.jpg","keywords":["DevOps","Embedded","Libraries","Linux","Optimization","Performance","Rust","Security","Software development","Software Engineering","Systems","Systems Administration","Tools","Ubuntu"],"articleSection":["Articles","Guides","How To","Programming","Software","Technology","Tools"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/","url":"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/","name":"How to Install Rust Programming Language on Ubuntu 24.04 LTS","isPartOf":{"@id":"http:\/\/local.brightwhiz\/#website"},"primaryImageOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/#primaryimage"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-Rust-Programming-Language-on-Ubuntu-22.04.jpg","datePublished":"2024-05-28T17:15:08+00:00","dateModified":"2024-05-28T17:15:09+00:00","description":"This guide will walk you through the steps to install Rust programming language on Ubuntu 24.04 Noble Numbat LTS Linux System","breadcrumb":{"@id":"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/#primaryimage","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-Rust-Programming-Language-on-Ubuntu-22.04.jpg","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-Rust-Programming-Language-on-Ubuntu-22.04.jpg","width":1280,"height":680,"caption":"Install Rust Programming Language on Ubuntu 22.04"},{"@type":"BreadcrumbList","@id":"http:\/\/local.brightwhiz\/how-to-install-rust-programming-language-on-ubuntu-24-04-noble-numbat\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/local.brightwhiz\/"},{"@type":"ListItem","position":2,"name":"Guide to Installing Rust Programming Language on Ubuntu 24.04 Noble Numbat"}]},{"@type":"WebSite","@id":"http:\/\/local.brightwhiz\/#website","url":"http:\/\/local.brightwhiz\/","name":"Brightwhiz.com","description":"Best Tech guides, Tutorials, and News","publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/local.brightwhiz\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/local.brightwhiz\/#organization","name":"Brightwhiz","url":"http:\/\/local.brightwhiz\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","width":706,"height":135,"caption":"Brightwhiz"},"image":{"@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/brightwhiz\/","https:\/\/x.com\/brightwhizmag","https:\/\/instagram.com\/bright_whiz\/","https:\/\/www.pinterest.com\/sobbayi\/","https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ"]},{"@type":"Person","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32","name":"Michael Bright","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/","url":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","contentUrl":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","caption":"Michael Bright"},"sameAs":["https:\/\/sobbayi.com"],"url":"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/"}]}},"_links":{"self":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13862"}],"collection":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/comments?post=13862"}],"version-history":[{"count":2,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13862\/revisions"}],"predecessor-version":[{"id":13912,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13862\/revisions\/13912"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media\/13921"}],"wp:attachment":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media?parent=13862"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/categories?post=13862"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/tags?post=13862"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}