{"id":13856,"date":"2024-05-28T20:10:03","date_gmt":"2024-05-28T17:10:03","guid":{"rendered":"http:\/\/local.brightwhiz\/?p=13856"},"modified":"2024-05-28T20:10:04","modified_gmt":"2024-05-28T17:10:04","slug":"a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems","status":"publish","type":"post","link":"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/","title":{"rendered":"A Comprehensive Guide to Installing Go (Golang) on Ubuntu 24.04, 22.04, and 20.04 Linux Systems"},"content":{"rendered":"\n

Go, also known as Golang, is a powerful, efficient, and statically typed programming language developed by Google. It\u2019s well-suited for building reliable and efficient software. Whether you’re developing web applications, microservices, or system tools, Go’s simplicity and performance make it a popular choice. This guide will walk you through the steps to install Go<\/a> on Ubuntu<\/a> 24.04, 22.04, and 20.04 systems.<\/p>\n\n\n\n

Why Choose Go?<\/strong><\/h3>\n\n\n\n

Go is designed for simplicity, concurrency, and performance. It compiles to machine code, has garbage collection, and provides robust concurrency mechanisms. These features make it an excellent choice for developers looking for a balance between speed and ease of use.<\/p>\n\n\n\n

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

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

    \n
  1. A system running Ubuntu 24.04, 22.04, or 20.04<\/strong>.<\/li>\n\n\n\n
  2. Sudo privileges<\/strong>: Administrative access to install new software packages.<\/li>\n<\/ol>\n\n\n\n

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

    Step 1: Download the Go Binary<\/h3>\n\n\n\n

    First, download the latest Go binary from the official Go website. You can use wget<\/code> to download the file directly to your system. As of this writing, the latest stable version is 1.20. If there is a newer version, replace the version number in the URL.<\/p>\n\n\n\n

    $ wget https:\/\/golang.org\/dl\/go1.20.linux-amd64.tar.gz<\/code><\/pre>\n\n\n\n

    Step 2: Verify the Download (Optional)<\/h3>\n\n\n\n

    To ensure the integrity of the downloaded file, you can verify it using the SHA256 checksum. First, download the checksum file from the Go website, then use the sha256sum<\/code> command:<\/p>\n\n\n\n

    $ sha256sum go1.20.linux-amd64.tar.gz<\/code><\/pre>\n\n\n\n

    Compare the output with the checksum provided on the Go download page.<\/p>\n\n\n\n

    Step 3: Extract the Archive<\/h3>\n\n\n\n

    Next, extract the tarball to the \/usr\/local<\/code> directory. This is the recommended location for Go installations:<\/p>\n\n\n\n

    $ sudo tar -C \/usr\/local -xzf go1.20.linux-amd64.tar.gz<\/code><\/pre>\n\n\n\n

    Step 4: Set Up the Go Environment<\/h3>\n\n\n\n

    To make Go available system-wide, you need to add the Go binary to your PATH<\/code>. You can do this by editing your shell profile file. For Bash, this file is typically .bashrc<\/code> or .profile<\/code>. For Zsh, it\u2019s .zshrc<\/code>.<\/p>\n\n\n\n

    Open the profile file with your preferred text editor:<\/p>\n\n\n\n

    $ nano ~\/.bashrc<\/code><\/pre>\n\n\n\n

    Add the following lines to the end of the file:<\/p>\n\n\n\n

    $ export PATH=$PATH:\/usr\/local\/go\/bin<\/code><\/pre>\n\n\n\n

    Save and close the file, then reload the profile to apply the changes:<\/p>\n\n\n\n

    $ source ~\/.bashrc<\/code><\/pre>\n\n\n\n

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

    Verify that Go is installed correctly by checking the version:<\/p>\n\n\n\n

    $ go version<\/code><\/pre>\n\n\n\n

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

    $ go version go1.20 linux\/amd64<\/code><\/pre>\n\n\n\n

    Step 6: Set Up Your Go Workspace<\/h3>\n\n\n\n

    Go encourages a specific workspace structure. By default, Go looks for its workspace under ~\/go<\/code>. You can set this up by creating the necessary directories:<\/p>\n\n\n\n

    $ mkdir -p ~\/go\/{bin,src,pkg}<\/code><\/pre>\n\n\n\n

    Add the workspace directory to your GOPATH<\/code>. Again, open your profile file:<\/p>\n\n\n\n

    $ nano ~\/.bashrc<\/code><\/pre>\n\n\n\n

    Add the following line:<\/p>\n\n\n\n

    $ export GOPATH=$HOME\/go\nexport PATH=$PATH:$GOPATH\/bin<\/code><\/pre>\n\n\n\n

    Save and close the file, then reload the profile:<\/p>\n\n\n\n

    $ source ~\/.bashrc<\/code><\/pre>\n\n\n\n

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

    Congratulations! You have successfully installed Go (Golang) on your Ubuntu 24.04, 22.04, or 20.04 system. You are now ready to start developing applications using Go\u2019s powerful and efficient features. Happy coding!<\/p>\n\n\n\n

    Feel free to explore Go\u2019s rich set of libraries and tools, and check out the official documentation<\/a> for more in-depth guides and tutorials.<\/p>\n","protected":false},"excerpt":{"rendered":"

    Go, also known as Golang, is a powerful, efficient, and statically typed programming language developed by Google. It\u2019s well-suited for building reliable and efficient software. Whether you’re developing web applications,…<\/p>\n","protected":false},"author":1,"featured_media":13919,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,23,9,27,28,16,18],"tags":[193,274,350,354,471,544,545,591,598],"yoast_head":"\nHow to Install GO(Golang) on Ubuntu 24.04, 22.04 or 20.04 Linux<\/title>\n<meta name=\"description\" content=\"This guide will walk you through the steps to install Go on Ubuntu 24.04, 22.04, and 20.04 LTS Linux systems\" \/>\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\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install GO(Golang) on Ubuntu 24.04, 22.04 or 20.04 Linux\" \/>\n<meta property=\"og:description\" content=\"This guide will walk you through the steps to install Go on Ubuntu 24.04, 22.04, and 20.04 LTS Linux systems\" \/>\n<meta property=\"og:url\" content=\"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/\" \/>\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:10:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-05-28T17:10:04+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-GOGolang-on-Ubuntu-24.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\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/\"},\"author\":{\"name\":\"Michael Bright\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\"},\"headline\":\"A Comprehensive Guide to Installing Go (Golang) on Ubuntu 24.04, 22.04, and 20.04 Linux Systems\",\"datePublished\":\"2024-05-28T17:10:03+00:00\",\"dateModified\":\"2024-05-28T17:10:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/\"},\"wordCount\":458,\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-GOGolang-on-Ubuntu-24.04.jpg\",\"keywords\":[\"DevOps\",\"Go\",\"Libraries\",\"Linux\",\"Programming\",\"Software development\",\"Software Engineering\",\"Tools\",\"Ubuntu\"],\"articleSection\":[\"Articles\",\"Guides\",\"How To\",\"Programming\",\"Software\",\"Technology\",\"Tools\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/\",\"url\":\"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/\",\"name\":\"How to Install GO(Golang) on Ubuntu 24.04, 22.04 or 20.04 Linux\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-GOGolang-on-Ubuntu-24.04.jpg\",\"datePublished\":\"2024-05-28T17:10:03+00:00\",\"dateModified\":\"2024-05-28T17:10:04+00:00\",\"description\":\"This guide will walk you through the steps to install Go on Ubuntu 24.04, 22.04, and 20.04 LTS Linux systems\",\"breadcrumb\":{\"@id\":\"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/#primaryimage\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-GOGolang-on-Ubuntu-24.04.jpg\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-GOGolang-on-Ubuntu-24.04.jpg\",\"width\":1280,\"height\":680,\"caption\":\"Install GO(Golang) on Ubuntu 24.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/local.brightwhiz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"A Comprehensive Guide to Installing Go (Golang) on Ubuntu 24.04, 22.04, and 20.04 Linux Systems\"}]},{\"@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 GO(Golang) on Ubuntu 24.04, 22.04 or 20.04 Linux","description":"This guide will walk you through the steps to install Go on Ubuntu 24.04, 22.04, and 20.04 LTS Linux systems","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\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/","og_locale":"en_US","og_type":"article","og_title":"How to Install GO(Golang) on Ubuntu 24.04, 22.04 or 20.04 Linux","og_description":"This guide will walk you through the steps to install Go on Ubuntu 24.04, 22.04, and 20.04 LTS Linux systems","og_url":"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/","og_site_name":"Brightwhiz.com","article_publisher":"https:\/\/www.facebook.com\/brightwhiz\/","article_published_time":"2024-05-28T17:10:03+00:00","article_modified_time":"2024-05-28T17:10:04+00:00","og_image":[{"width":1280,"height":680,"url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-GOGolang-on-Ubuntu-24.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\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/#article","isPartOf":{"@id":"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/"},"author":{"name":"Michael Bright","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32"},"headline":"A Comprehensive Guide to Installing Go (Golang) on Ubuntu 24.04, 22.04, and 20.04 Linux Systems","datePublished":"2024-05-28T17:10:03+00:00","dateModified":"2024-05-28T17:10:04+00:00","mainEntityOfPage":{"@id":"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/"},"wordCount":458,"publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"image":{"@id":"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-GOGolang-on-Ubuntu-24.04.jpg","keywords":["DevOps","Go","Libraries","Linux","Programming","Software development","Software Engineering","Tools","Ubuntu"],"articleSection":["Articles","Guides","How To","Programming","Software","Technology","Tools"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/","url":"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/","name":"How to Install GO(Golang) on Ubuntu 24.04, 22.04 or 20.04 Linux","isPartOf":{"@id":"http:\/\/local.brightwhiz\/#website"},"primaryImageOfPage":{"@id":"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/#primaryimage"},"image":{"@id":"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-GOGolang-on-Ubuntu-24.04.jpg","datePublished":"2024-05-28T17:10:03+00:00","dateModified":"2024-05-28T17:10:04+00:00","description":"This guide will walk you through the steps to install Go on Ubuntu 24.04, 22.04, and 20.04 LTS Linux systems","breadcrumb":{"@id":"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/#primaryimage","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-GOGolang-on-Ubuntu-24.04.jpg","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-GOGolang-on-Ubuntu-24.04.jpg","width":1280,"height":680,"caption":"Install GO(Golang) on Ubuntu 24.04"},{"@type":"BreadcrumbList","@id":"http:\/\/local.brightwhiz\/a-comprehensive-guide-to-installing-go-golang-on-ubuntu-24-04-22-04-and-20-04-linux-systems\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/local.brightwhiz\/"},{"@type":"ListItem","position":2,"name":"A Comprehensive Guide to Installing Go (Golang) on Ubuntu 24.04, 22.04, and 20.04 Linux Systems"}]},{"@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\/13856"}],"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=13856"}],"version-history":[{"count":2,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13856\/revisions"}],"predecessor-version":[{"id":13909,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13856\/revisions\/13909"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media\/13919"}],"wp:attachment":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media?parent=13856"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/categories?post=13856"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/tags?post=13856"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}