{"id":9,"date":"2025-07-20T12:23:10","date_gmt":"2025-07-20T12:23:10","guid":{"rendered":"https:\/\/vijayganeshpc.in\/?p=9"},"modified":"2025-07-20T12:23:11","modified_gmt":"2025-07-20T12:23:11","slug":"install-go-development-environment","status":"publish","type":"post","link":"https:\/\/vijayganeshpc.in\/?p=9","title":{"rendered":"How to Install Go and Set Up Your Development Environment"},"content":{"rendered":"\n<p>In our <a href=\"https:\/\/vijayganeshpc.in\/?p=6\" target=\"_blank\" rel=\"noreferrer noopener\">first post<\/a>, we covered what Go is and the top reasons why you should learn it in 2025. Now, it&#8217;s time to stop talking and start doing.<\/p>\n\n\n\n<p>Today is all about getting your hands dirty. We will walk through every step of installing Go and configuring a professional-grade development environment on your computer. By the end of this article, you&#8217;ll be ready to write your first line of Go code.<\/p>\n\n\n\n<p>Let&#8217;s get started!<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Download and Install Go<\/h3>\n\n\n\n<p>First, we need to install the official Go toolchain, which includes the compiler, standard libraries, and command-line tools.<\/p>\n\n\n\n<p>Head over to the official Go downloads page:<\/p>\n\n\n\n<p>\u27a1\ufe0f <strong><a target=\"_blank\" rel=\"noreferrer noopener\" href=\"https:\/\/go.dev\/dl\/\">Official Go Downloads Page (go.dev)<\/a><\/strong><\/p>\n\n\n\n<p>Here you will find installers for all major operating systems. Select the one for your machine.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">For Windows Users<\/h4>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Download the MSI installer (e.g., <code>go1.2x.x.windows-amd64.msi<\/code>).<\/li>\n\n\n\n<li>Double-click the downloaded file to run the installer.<\/li>\n\n\n\n<li>Follow the prompts. The installer will place Go in <code>C:\\Program Files\\Go<\/code> and automatically add the <code>C:\\Program Files\\Go\\bin<\/code> directory to your system&#8217;s <code>PATH<\/code> environment variable. This is important as it lets you run Go commands from any terminal.<\/li>\n<\/ol>\n\n\n\n<h4 class=\"wp-block-heading\">For macOS Users<\/h4>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Download the package installer (e.g., <code>go1.2x.x.darwin-amd64.pkg<\/code>).<\/li>\n\n\n\n<li>Open the downloaded file and follow the installation wizard. It will install Go in <code>\/usr\/local\/go<\/code> and add <code>\/usr\/local\/go\/bin<\/code> to your <code>PATH<\/code>.<\/li>\n\n\n\n<li><strong>(Alternative for Developers):<\/strong> If you use <a href=\"https:\/\/brew.sh\/\" target=\"_blank\" rel=\"noreferrer noopener\">Homebrew<\/a>, you can simply open your Terminal and run: <code>brew install go<\/code>.<\/li>\n<\/ol>\n\n\n\n<h4 class=\"wp-block-heading\">For Linux Users<\/h4>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Download the tarball archive (e.g., <code>go1.2x.x.linux-amd64.tar.gz<\/code>).<\/li>\n\n\n\n<li>Open your terminal.<\/li>\n\n\n\n<li>It&#8217;s standard practice to install Go in <code>\/usr\/local<\/code>. Run the following command to extract the archive there (you may need <code>sudo<\/code>):Bash<code># Make sure to remove any previous installation first sudo rm -rf \/usr\/local\/go # Replace the filename with the one you downloaded sudo tar -C \/usr\/local -xzf go1.2x.x.linux-amd64.tar.gz<\/code><\/li>\n\n\n\n<li>Next, add the Go binary path to your environment. Add the following line to your <code>$HOME\/.profile<\/code> or <code>$HOME\/.bashrc<\/code> file:Bash<code>export PATH=$PATH:\/usr\/local\/go\/bin<\/code><\/li>\n\n\n\n<li>Apply the changes by running <code>source $HOME\/.profile<\/code> or by opening a new terminal window.<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Verify Your Installation<\/h3>\n\n\n\n<p>This is a critical step to ensure everything worked correctly. Open a new terminal (Command Prompt or PowerShell on Windows, Terminal on macOS\/Linux) and type the following command:<\/p>\n\n\n\n<p>Bash<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>go version\n<\/code><\/pre>\n\n\n\n<p>You should see output similar to this, confirming that Go is installed:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>go version go1.24.0 windows\/amd64 \n<\/code><\/pre>\n\n\n\n<p><em>(Your version number and OS may be different)<\/em><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Set Up Your Code Editor (VS Code)<\/h3>\n\n\n\n<p>While you can write Go code in any text editor, using a modern code editor with good language support will make your life much easier. We highly recommend <strong>Visual Studio Code (VS Code)<\/strong>. It&#8217;s free, powerful, and has fantastic Go support.<\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li><strong>Download VS Code:<\/strong> If you don&#8217;t already have it, download it from the official site: <a href=\"https:\/\/code.visualstudio.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/code.visualstudio.com\/<\/a><\/li>\n\n\n\n<li><strong>Install the Go Extension:<\/strong> Once VS Code is installed, you need to add the official Go extension.<ul><li>Open VS Code.<\/li><li>Go to the Extensions view (click the icon on the left sidebar or press <code>Ctrl+Shift+X<\/code>).<\/li><li>Search for &#8220;Go&#8221;.<\/li><li>Install the one published by the &#8220;Go Team at Google&#8221;.<\/li><\/ul>\u27a1\ufe0f <strong>Direct Link:<\/strong> <a href=\"https:\/\/marketplace.visualstudio.com\/items?itemName=golang.Go\" target=\"_blank\" rel=\"noreferrer noopener\">Go Extension for VS Code<\/a><\/li>\n\n\n\n<li><strong>Install Go Tools:<\/strong> The first time you open a <code>.go<\/code> file, the extension will prompt you in the bottom-right corner to install additional Go analysis tools. <strong>Click &#8220;Install All&#8221;<\/strong>. These tools are essential for features like auto-completion, code navigation, and error checking.<\/li>\n<\/ol>\n\n\n\n<p>Excellent. Let&#8217;s move on to the second day. This post is crucial as it involves getting the user&#8217;s system ready for coding. Clear, step-by-step instructions with links are key.<\/p>\n\n\n\n<p>Here is the draft for your Day 2 blog post.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Blog Post Title:<\/strong> How to Install Go and Set Up Your Development Environment<\/h3>\n\n\n\n<p><strong>SEO Slug:<\/strong> <code>install-go-development-environment<\/code><\/p>\n\n\n\n<p><strong>Meta Description:<\/strong> <code>Ready to code in Go? Our step-by-step guide shows you how to install Go on Windows, macOS, and Linux, and set up your development environment with VS Code. Start today!<\/code><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Blog Post Content<\/h3>\n\n\n\n<p>Welcome to Day 2 of our 30-day Golang series! In our <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"https:\/\/www.google.com\/search?q=link-to-your-day-1-post\">first post<\/a>, we covered what Go is and the top reasons why you should learn it in 2025. Now, it&#8217;s time to stop talking and start doing.<\/p>\n\n\n\n<p>Today is all about getting your hands dirty. We will walk through every step of installing Go and configuring a professional-grade development environment on your computer. By the end of this article, you&#8217;ll be ready to write your first line of Go code.<\/p>\n\n\n\n<p>Let&#8217;s get started!<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Download and Install Go<\/h3>\n\n\n\n<p>First, we need to install the official Go toolchain, which includes the compiler, standard libraries, and command-line tools.<\/p>\n\n\n\n<p>Head over to the official Go downloads page:<\/p>\n\n\n\n<p>\u27a1\ufe0f <strong><a target=\"_blank\" rel=\"noreferrer noopener\" href=\"https:\/\/go.dev\/dl\/\">Official Go Downloads Page (go.dev)<\/a><\/strong><\/p>\n\n\n\n<p>Here you will find installers for all major operating systems. Select the one for your machine.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">For Windows Users<\/h4>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Download the MSI installer (e.g., <code>go1.2x.x.windows-amd64.msi<\/code>).<\/li>\n\n\n\n<li>Double-click the downloaded file to run the installer.<\/li>\n\n\n\n<li>Follow the prompts. The installer will place Go in <code>C:\\Program Files\\Go<\/code> and automatically add the <code>C:\\Program Files\\Go\\bin<\/code> directory to your system&#8217;s <code>PATH<\/code> environment variable. This is important as it lets you run Go commands from any terminal.<\/li>\n<\/ol>\n\n\n\n<h4 class=\"wp-block-heading\">For macOS Users<\/h4>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Download the package installer (e.g., <code>go1.2x.x.darwin-amd64.pkg<\/code>).<\/li>\n\n\n\n<li>Open the downloaded file and follow the installation wizard. It will install Go in <code>\/usr\/local\/go<\/code> and add <code>\/usr\/local\/go\/bin<\/code> to your <code>PATH<\/code>.<\/li>\n\n\n\n<li><strong>(Alternative for Developers):<\/strong> If you use <a href=\"https:\/\/brew.sh\/\" target=\"_blank\" rel=\"noreferrer noopener\">Homebrew<\/a>, you can simply open your Terminal and run: <code>brew install go<\/code>.<\/li>\n<\/ol>\n\n\n\n<h4 class=\"wp-block-heading\">For Linux Users<\/h4>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Download the tarball archive (e.g., <code>go1.2x.x.linux-amd64.tar.gz<\/code>).<\/li>\n\n\n\n<li>Open your terminal.<\/li>\n\n\n\n<li>It&#8217;s standard practice to install Go in <code>\/usr\/local<\/code>. Run the following command to extract the archive there (you may need <code>sudo<\/code>):Bash<code># Make sure to remove any previous installation first sudo rm -rf \/usr\/local\/go # Replace the filename with the one you downloaded sudo tar -C \/usr\/local -xzf go1.2x.x.linux-amd64.tar.gz<\/code><\/li>\n\n\n\n<li>Next, add the Go binary path to your environment. Add the following line to your <code>$HOME\/.profile<\/code> or <code>$HOME\/.bashrc<\/code> file:Bash<code>export PATH=$PATH:\/usr\/local\/go\/bin<\/code><\/li>\n\n\n\n<li>Apply the changes by running <code>source $HOME\/.profile<\/code> or by opening a new terminal window.<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Verify Your Installation<\/h3>\n\n\n\n<p>This is a critical step to ensure everything worked correctly. Open a new terminal (Command Prompt or PowerShell on Windows, Terminal on macOS\/Linux) and type the following command:<\/p>\n\n\n\n<p>Bash<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>go version\n<\/code><\/pre>\n\n\n\n<p>You should see output similar to this, confirming that Go is installed:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>go version go1.24.0 windows\/amd64 \n<\/code><\/pre>\n\n\n\n<p><em>(Your version number and OS may be different)<\/em><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Set Up Your Code Editor (VS Code)<\/h3>\n\n\n\n<p>While you can write Go code in any text editor, using a modern code editor with good language support will make your life much easier. We highly recommend <strong>Visual Studio Code (VS Code)<\/strong>. It&#8217;s free, powerful, and has fantastic Go support.<\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li><strong>Download VS Code:<\/strong> If you don&#8217;t already have it, download it from the official site: <a href=\"https:\/\/code.visualstudio.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/code.visualstudio.com\/<\/a><\/li>\n\n\n\n<li><strong>Install the Go Extension:<\/strong> Once VS Code is installed, you need to add the official Go extension.<ul><li>Open VS Code.<\/li><li>Go to the Extensions view (click the icon on the left sidebar or press <code>Ctrl+Shift+X<\/code>).<\/li><li>Search for &#8220;Go&#8221;.<\/li><li>Install the one published by the &#8220;Go Team at Google&#8221;.<\/li><\/ul>\u27a1\ufe0f <strong>Direct Link:<\/strong> <a href=\"https:\/\/marketplace.visualstudio.com\/items?itemName=golang.Go\" target=\"_blank\" rel=\"noreferrer noopener\">Go Extension for VS Code<\/a><\/li>\n\n\n\n<li><strong>Install Go Tools:<\/strong> The first time you open a <code>.go<\/code> file, the extension will prompt you in the bottom-right corner to install additional Go analysis tools. <strong>Click &#8220;Install All&#8221;<\/strong>. These tools are essential for features like auto-completion, code navigation, and error checking.<\/li>\n<\/ol>\n\n\n\n<p><em>(This is what the prompt looks like)<\/em><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">You&#8217;re All Set!<\/h3>\n\n\n\n<p>Congratulations! You now have a fully functional, professional Go development environment on your computer. You&#8217;ve installed the compiler, verified it&#8217;s working, and set up the best editor for the job.<\/p>\n\n\n\n<p><strong>What&#8217;s Next?<\/strong><\/p>\n\n\n\n<p>Now that our workshop is set up, it&#8217;s time to build something. Join us  for <strong>Day 3<\/strong>, where we will finally write and run our very first Go program: the classic &#8220;Hello, World!&#8221;.<\/p>\n\n\n\n<p>If you ran into any issues during the setup, drop a comment below, and I&#8217;ll do my best to help!<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In our first post, we covered what Go is and the top reasons why you should learn it in 2025. Now, it&#8217;s time to stop talking and start doing. Today is all about getting your hands dirty. We will walk through every step of installing Go and configuring a professional-grade development environment on your computer. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4,3],"tags":[6,5],"class_list":["post-9","post","type-post","status-publish","format-standard","hentry","category-golang","category-languages","tag-golang","tag-langauges"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Install Go and Set Up Your Development Environment - Vijay Blog<\/title>\n<meta name=\"description\" content=\"How to Install Go (Golang) in 2025: Complete Setup Guide for Windows, macOS &amp; Linux + VS Code IDE\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vijayganeshpc.in\/?p=9\" \/>\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 and Set Up Your Development Environment - Vijay Blog\" \/>\n<meta property=\"og:description\" content=\"How to Install Go (Golang) in 2025: Complete Setup Guide for Windows, macOS &amp; Linux + VS Code IDE\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vijayganeshpc.in\/?p=9\" \/>\n<meta property=\"og:site_name\" content=\"Vijay Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-07-20T12:23:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-20T12:23:11+00:00\" \/>\n<meta name=\"author\" content=\"Vijay Ganesh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Vijay Ganesh\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/vijayganeshpc.in\/?p=9\",\"url\":\"https:\/\/vijayganeshpc.in\/?p=9\",\"name\":\"How to Install Go and Set Up Your Development Environment - Vijay Blog\",\"isPartOf\":{\"@id\":\"https:\/\/vijayganeshpc.in\/#website\"},\"datePublished\":\"2025-07-20T12:23:10+00:00\",\"dateModified\":\"2025-07-20T12:23:11+00:00\",\"author\":{\"@id\":\"https:\/\/vijayganeshpc.in\/#\/schema\/person\/9b88486c740079fc781e9307efdad0c6\"},\"description\":\"How to Install Go (Golang) in 2025: Complete Setup Guide for Windows, macOS & Linux + VS Code IDE\",\"breadcrumb\":{\"@id\":\"https:\/\/vijayganeshpc.in\/?p=9#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/vijayganeshpc.in\/?p=9\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/vijayganeshpc.in\/?p=9#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/vijayganeshpc.in\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Go and Set Up Your Development Environment\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/vijayganeshpc.in\/#website\",\"url\":\"https:\/\/vijayganeshpc.in\/\",\"name\":\"Vijay Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/vijayganeshpc.in\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/vijayganeshpc.in\/#\/schema\/person\/9b88486c740079fc781e9307efdad0c6\",\"name\":\"Vijay Ganesh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/vijayganeshpc.in\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/08a0c5cd6f7f6f76959c629eee53440e25abc5ecc212510d4e8940782c332d98?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/08a0c5cd6f7f6f76959c629eee53440e25abc5ecc212510d4e8940782c332d98?s=96&d=mm&r=g\",\"caption\":\"Vijay Ganesh\"},\"sameAs\":[\"https:\/\/vijayganeshpc.in\"],\"url\":\"https:\/\/vijayganeshpc.in\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Go and Set Up Your Development Environment - Vijay Blog","description":"How to Install Go (Golang) in 2025: Complete Setup Guide for Windows, macOS & Linux + VS Code IDE","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:\/\/vijayganeshpc.in\/?p=9","og_locale":"en_US","og_type":"article","og_title":"How to Install Go and Set Up Your Development Environment - Vijay Blog","og_description":"How to Install Go (Golang) in 2025: Complete Setup Guide for Windows, macOS & Linux + VS Code IDE","og_url":"https:\/\/vijayganeshpc.in\/?p=9","og_site_name":"Vijay Blog","article_published_time":"2025-07-20T12:23:10+00:00","article_modified_time":"2025-07-20T12:23:11+00:00","author":"Vijay Ganesh","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Vijay Ganesh","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vijayganeshpc.in\/?p=9","url":"https:\/\/vijayganeshpc.in\/?p=9","name":"How to Install Go and Set Up Your Development Environment - Vijay Blog","isPartOf":{"@id":"https:\/\/vijayganeshpc.in\/#website"},"datePublished":"2025-07-20T12:23:10+00:00","dateModified":"2025-07-20T12:23:11+00:00","author":{"@id":"https:\/\/vijayganeshpc.in\/#\/schema\/person\/9b88486c740079fc781e9307efdad0c6"},"description":"How to Install Go (Golang) in 2025: Complete Setup Guide for Windows, macOS & Linux + VS Code IDE","breadcrumb":{"@id":"https:\/\/vijayganeshpc.in\/?p=9#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vijayganeshpc.in\/?p=9"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/vijayganeshpc.in\/?p=9#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vijayganeshpc.in\/"},{"@type":"ListItem","position":2,"name":"How to Install Go and Set Up Your Development Environment"}]},{"@type":"WebSite","@id":"https:\/\/vijayganeshpc.in\/#website","url":"https:\/\/vijayganeshpc.in\/","name":"Vijay Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vijayganeshpc.in\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/vijayganeshpc.in\/#\/schema\/person\/9b88486c740079fc781e9307efdad0c6","name":"Vijay Ganesh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vijayganeshpc.in\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/08a0c5cd6f7f6f76959c629eee53440e25abc5ecc212510d4e8940782c332d98?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/08a0c5cd6f7f6f76959c629eee53440e25abc5ecc212510d4e8940782c332d98?s=96&d=mm&r=g","caption":"Vijay Ganesh"},"sameAs":["https:\/\/vijayganeshpc.in"],"url":"https:\/\/vijayganeshpc.in\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/vijayganeshpc.in\/index.php?rest_route=\/wp\/v2\/posts\/9","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vijayganeshpc.in\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/vijayganeshpc.in\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/vijayganeshpc.in\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/vijayganeshpc.in\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=9"}],"version-history":[{"count":2,"href":"https:\/\/vijayganeshpc.in\/index.php?rest_route=\/wp\/v2\/posts\/9\/revisions"}],"predecessor-version":[{"id":11,"href":"https:\/\/vijayganeshpc.in\/index.php?rest_route=\/wp\/v2\/posts\/9\/revisions\/11"}],"wp:attachment":[{"href":"https:\/\/vijayganeshpc.in\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=9"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vijayganeshpc.in\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=9"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vijayganeshpc.in\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=9"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}