{"id":113857,"date":"2026-06-08T07:22:15","date_gmt":"2026-06-08T01:52:15","guid":{"rendered":"https:\/\/www.guvi.in\/blog\/?p=113857"},"modified":"2026-06-08T07:22:16","modified_gmt":"2026-06-08T01:52:16","slug":"how-to-install-python-on-linux","status":"publish","type":"post","link":"https:\/\/www.guvi.in\/blog\/how-to-install-python-on-linux\/","title":{"rendered":"How to Install Python on Linux: A Complete Guide"},"content":{"rendered":"\n<p>Imagine you want to learn programming or build applications, and everyone tells you to use Python because it is beginner-friendly. You download Python and realize you need to install it on your computer. If you use Linux, the process is straightforward but might seem confusing if you have never done it before.<\/p>\n\n\n\n<p>Installing Python in Linux is one of the most common tasks for developers and students. Linux comes with Python pre-installed in most cases, but you might want the latest version or need multiple Python versions for different projects. Learning how to install Python in Linux is essential whether you are a beginner or an experienced developer.<\/p>\n\n\n\n<p>If you are using Linux, learning to code, or setting up a development environment, this guide walks you through everything you need to know about how to install Python in Linux.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Quick TL;DR Summary<\/strong><\/h2>\n\n\n\n<ol>\n<li>This guide explains how to install Python in Linux through multiple methods including using package managers, installing from source, and managing multiple Python versions.<br><\/li>\n\n\n\n<li>You will learn the differences between Python 2 and Python 3, why you should use Python 3, and how to check which version you already have installed.<br><\/li>\n\n\n\n<li>Step-by-step instructions show you how to use package managers like apt (Ubuntu\/Debian), yum (CentOS\/RHEL), and pacman (Arch Linux) to install Python with single commands.<br><\/li>\n\n\n\n<li>You will understand how to verify your installation, set up pip (Python package manager), create virtual environments, and manage multiple Python versions using tools like pyenv.<br><\/li>\n\n\n\n<li>Practical troubleshooting tips help you solve common installation problems and get your Python development environment working correctly.<\/li>\n<\/ol>\n\n\n\n<div class=\"guvi-answer-card\" style=\"margin: 40px 0;\">\n\n  <div style=\"\n    position: relative;\n    background: linear-gradient(135deg, #f0fff4, #e6f7ee);\n    border: 1px solid #cfeedd;\n    padding: 26px 24px 22px 24px;\n    border-radius: 14px;\n    font-family: Arial, sans-serif;\n    box-shadow: 0 6px 16px rgba(0,0,0,0.05);\n  \">\n\n    <!-- Top accent -->\n    <div style=\"\n      position: absolute;\n      top: 0;\n      left: 0;\n      height: 6px;\n      width: 100%;\n      background: linear-gradient(to right, #099f4e, #6dd5a3);\n      border-radius: 14px 14px 0 0;\n    \"><\/div>\n\n    <!-- Title -->\n    <h3 style=\"\n      margin: 10px 0 12px 0;\n      color: #099f4e;\n      font-size: 20px;\n    \">\n      How to Install Python in Linux\n    <\/h3>\n\n    <!-- Content -->\n    <p style=\"\n      margin: 0;\n      color: #2f4f3f;\n      font-size: 16px;\n      line-height: 1.7;\n    \">\n      Installing Python in Linux is the process of downloading, configuring, and setting up the Python programming language on a Linux operating system. Most Linux distributions include Python by default, but users can install or upgrade it using package managers such as <code>apt<\/code>, <code>dnf<\/code>, or <code>yum<\/code>, compile it from source code, or manage multiple Python versions using tools like <code>pyenv<\/code>. Proper installation ensures that Python, its package manager (<code>pip<\/code>), and related development tools are available for building and running Python applications.\n    <\/p>\n\n  <\/div>\n\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why Install Python in Linux?<\/strong><\/h2>\n\n\n\n<ol>\n<li><strong>Most Linux distributions come with Python<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Many Linux systems come with Python 2 or Python 3 pre-installed. However, you might want the latest version, a specific version for compatibility, or multiple versions for different projects.<\/p>\n\n\n\n<ol start=\"2\">\n<li><strong>Python 2 is outdated<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Python 2 reached end-of-life in 2020. Most projects and learning materials use Python 3. Even if your system has Python installed, it might be an old version you should update.<\/p>\n\n\n\n<ol start=\"3\">\n<li><strong>Development requires specific versions<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Different projects need different <a href=\"https:\/\/www.guvi.in\/hub\/python\/what-is-python\/\" target=\"_blank\" rel=\"noreferrer noopener\">Python<\/a> versions. Installing multiple versions lets you switch between them based on project requirements.<\/p>\n\n\n\n<ol start=\"4\">\n<li><strong>Linux development environment<\/strong><\/li>\n<\/ol>\n\n\n\n<p><a href=\"https:\/\/guvi.in\/hub\/linux-guide-tutorial\/\" target=\"_blank\" data-type=\"link\" data-id=\"https:\/\/guvi.in\/hub\/linux-guide-tutorial\/\" rel=\"noreferrer noopener\">Linux<\/a> is the preferred <a href=\"https:\/\/www.guvi.in\/blog\/introduction-to-operating-systems\/\" target=\"_blank\" rel=\"noreferrer noopener\">operating system<\/a> for developers and server environments. Learning how to install Python in Linux sets you up for professional development work.<\/p>\n\n\n\n<div style=\"background-color: #099f4e; border: 3px solid #110053; border-radius: 12px; padding: 18px 22px; color: #FFFFFF; font-family: Montserrat, Helvetica, sans-serif; line-height: 1.6; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); max-width: 800px;\">\n  <strong style=\"font-size: 22px; color: #FFFFFF;\">\ud83d\udca1 Did You Know?<\/strong>\n  <p style=\"margin-top: 14px;\">\n    <strong>Python<\/strong> and <strong>Linux<\/strong> form one of the most widely used technology combinations in the world. Many large-scale internet services rely heavily on Linux-based infrastructure and use Python for automation, backend services, data processing, machine learning, and DevOps workflows. Companies such as <strong>Google<\/strong>, <strong>Netflix<\/strong>, <strong>Instagram<\/strong>, and <strong>Spotify<\/strong> have all used Python extensively within their technology stacks. Because of this, learning how to install and manage Python on Linux is more than a beginner exercise\u2014it introduces the same foundational skills that software engineers, data scientists, and system administrators use when working with production servers and cloud environments.\n  <\/p>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Check if Python Is Already Installed<\/strong><\/h2>\n\n\n\n<ol>\n<li><strong>Opening the terminal<\/strong><\/li>\n<\/ol>\n\n\n\n<p>First, open your Linux terminal. You can usually do this by pressing Ctrl + Alt + T or searching for &#8220;Terminal&#8221; in your application menu.<\/p>\n\n\n\n<ol start=\"2\">\n<li><strong>Checking Python version<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Type this command to check if Python 3 is installed:<\/p>\n\n\n\n<p>python3 &#8211;version<\/p>\n\n\n\n<p>If Python is installed, you see the version number like &#8220;Python 3.10.12&#8221;. If you get &#8220;command not found&#8221;, Python 3 is not installed.<\/p>\n\n\n\n<ol start=\"3\">\n<li><strong>Checking for Python 2<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Type this to check for Python 2:<\/p>\n\n\n\n<p>python2 &#8211;version<\/p>\n\n\n\n<p>Note: Python 2 is outdated. If you have only Python 2, you should install Python 3.<\/p>\n\n\n\n<ol start=\"4\">\n<li><strong>Checking pip version<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Pip is Python&#8217;s package manager. Check if pip is installed:<\/p>\n\n\n\n<p>pip3 &#8211;version<\/p>\n\n\n\n<p>If pip is not installed, you will need to install it along with Python.<\/p>\n\n\n\n<p><strong>Read More: <\/strong><a href=\"https:\/\/www.guvi.in\/hub\/python-tutorial\/getting-started-with-python\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Understand Python and setup Python Development Environment<\/strong><\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Installing Python in Linux<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Method 1: Using apt (Ubuntu and Debian)<\/strong><\/h3>\n\n\n\n<p>This is the easiest method for Ubuntu and Debian-based distributions.<\/p>\n\n\n\n<p>Step 1: Update package manager<\/p>\n\n\n\n<p>sudo apt update<\/p>\n\n\n\n<p>This downloads the latest package information.<\/p>\n\n\n\n<p>Step 2: Install Python 3<\/p>\n\n\n\n<p>sudo apt install python3<\/p>\n\n\n\n<p>Step 3: Verify installation<\/p>\n\n\n\n<p>python3 &#8211;version<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Method 2: Using yum (CentOS and RHEL)<\/strong><\/h3>\n\n\n\n<p>For CentOS, RHEL, and Red Hat based systems.<\/p>\n\n\n\n<p>Step 1: Install Python 3<\/p>\n\n\n\n<p>sudo yum install python3<\/p>\n\n\n\n<p>Step 2: Verify installation<\/p>\n\n\n\n<p>python3 &#8211;version<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Method 3: Using pacman (Arch Linux)<\/strong><\/h3>\n\n\n\n<p>For Arch Linux and Arch-based distributions.<\/p>\n\n\n\n<p>Step 1: Install Python 3<\/p>\n\n\n\n<p>sudo pacman -S python<\/p>\n\n\n\n<p>Step 2: Verify installation<\/p>\n\n\n\n<p>python &#8211;version<\/p>\n\n\n\n<p>Note: Arch Linux calls it &#8220;python&#8221; instead of &#8220;python3&#8221;.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Method 4: Installing from source<\/strong><\/h3>\n\n\n\n<p>For the absolute latest Python version or custom installation.<\/p>\n\n\n\n<p>Step 1: Download Python source<\/p>\n\n\n\n<p>cd \/tmp<\/p>\n\n\n\n<p>wget https:\/\/www.python.org\/ftp\/python\/3.12.0\/Python-3.12.0.tgz<\/p>\n\n\n\n<p>Replace 3.12.0 with the version you want.<\/p>\n\n\n\n<p>Step 2: Extract the archive<\/p>\n\n\n\n<p>tar -xzf Python-3.12.0.tgz<\/p>\n\n\n\n<p>cd Python-3.12.0<\/p>\n\n\n\n<p>Step 3: Configure and install<\/p>\n\n\n\n<p>.\/configure &#8211;prefix=$HOME\/python-3.12<\/p>\n\n\n\n<p>make<\/p>\n\n\n\n<p>make install<\/p>\n\n\n\n<p>Step 4: Add to PATH<\/p>\n\n\n\n<p>export PATH=$HOME\/python-3.12\/bin:$PATH<\/p>\n\n\n\n<div style=\"background-color: #099f4e; border: 3px solid #110053; border-radius: 12px; padding: 18px 22px; color: #FFFFFF; font-family: Montserrat, Helvetica, sans-serif; line-height: 1.6; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); max-width: 800px;\">\n  <strong style=\"font-size: 22px; color: #FFFFFF;\">\ud83d\udca1 Did You Know?<\/strong>\n  <p style=\"margin-top: 14px;\">\n    <strong>Python<\/strong> is one of the most important tools in modern <strong>Linux system administration<\/strong> and <strong>DevOps<\/strong>. System administrators use Python scripts to automate repetitive tasks such as server provisioning, log analysis, backup management, performance monitoring, and cloud infrastructure deployment. Because many web servers, cloud platforms, and enterprise systems run on Linux, Python has become a key language for managing the technology that powers much of the internet. In fact, many DevOps engineers spend a significant portion of their time writing Python code to automate workflows, reduce manual effort, and improve the reliability of large-scale systems.\n  <\/p>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Installing pip (Package Manager)<\/strong><\/h2>\n\n\n\n<ol>\n<li><strong>What is pip?<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Pip is Python&#8217;s package manager. It lets you install libraries and tools for your Python projects. Most Python installations include pip, but you might need to install it separately.<\/p>\n\n\n\n<ol start=\"2\">\n<li><strong>Installing pip for Python 3<\/strong><\/li>\n<\/ol>\n\n\n\n<p>sudo apt install python3-pip<\/p>\n\n\n\n<p>For other distributions, replace &#8220;apt&#8221; with your package manager.<\/p>\n\n\n\n<ol start=\"3\">\n<li><strong>Verifying pip installation<\/strong><\/li>\n<\/ol>\n\n\n\n<p>pip3 &#8211;version<\/p>\n\n\n\n<ol start=\"4\">\n<li><strong>Using pip to install packages<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Once pip is installed, you can install Python packages:<\/p>\n\n\n\n<p>pip3 install package_name<\/p>\n\n\n\n<p>For example, to install a web framework:<\/p>\n\n\n\n<p>pip3 install flask<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Managing Multiple Python Versions<\/strong><\/h2>\n\n\n\n<ol>\n<li><strong>Installing multiple Python versions<\/strong><\/li>\n<\/ol>\n\n\n\n<p>You can have multiple Python versions installed simultaneously.<\/p>\n\n\n\n<p>sudo apt install python3.9 python3.10 python3.11 python3.12<\/p>\n\n\n\n<p>Check which versions are installed:<\/p>\n\n\n\n<p>python3.9 &#8211;version<\/p>\n\n\n\n<p>python3.10 &#8211;version<\/p>\n\n\n\n<p>python3.11 &#8211;version<\/p>\n\n\n\n<p>python3.12 &#8211;version<\/p>\n\n\n\n<ol start=\"2\">\n<li><strong>Using update-alternatives for default version<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Make one version the default:<\/p>\n\n\n\n<p>sudo update-alternatives &#8211;install \/usr\/bin\/python3 python3 \/usr\/bin\/python3.9 1<\/p>\n\n\n\n<p>sudo update-alternatives &#8211;install \/usr\/bin\/python3 python3 \/usr\/bin\/python3.10 2<\/p>\n\n\n\n<p>Switch between versions:<\/p>\n\n\n\n<p>sudo update-alternatives &#8211;config python3<\/p>\n\n\n\n<ol start=\"3\">\n<li><strong>Using pyenv for version management<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Pyenv is a tool that makes managing multiple Python versions easy.<\/p>\n\n\n\n<p>Install pyenv:<\/p>\n\n\n\n<p>curl https:\/\/pyenv.run | bash<\/p>\n\n\n\n<p>Install a specific Python version:<\/p>\n\n\n\n<p>pyenv install 3.11.0<\/p>\n\n\n\n<p>Set a version as default:<\/p>\n\n\n\n<p>pyenv global 3.11.0<\/p>\n\n\n\n<p>Switch versions per project:<\/p>\n\n\n\n<p>cd my_project<\/p>\n\n\n\n<p>pyenv local 3.9.0<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Creating Virtual Environments<\/strong><\/h2>\n\n\n\n<ol>\n<li><strong>What is a virtual environment?<\/strong><\/li>\n<\/ol>\n\n\n\n<p>A <a href=\"https:\/\/www.guvi.in\/blog\/how-to-create-virtual-environment-in-python\/\" target=\"_blank\" rel=\"noreferrer noopener\">virtual environment<\/a> is an isolated Python installation for a specific project. It lets different projects use different Python versions and package versions without conflicts.<\/p>\n\n\n\n<ol start=\"2\">\n<li><strong>Creating a virtual environment<\/strong><\/li>\n<\/ol>\n\n\n\n<p>python3 -m venv my_project_env<\/p>\n\n\n\n<p>This creates a folder called &#8220;my_project_env&#8221; with an isolated Python setup.<\/p>\n\n\n\n<ol start=\"3\">\n<li><strong>Activating a virtual environment<\/strong><\/li>\n<\/ol>\n\n\n\n<p>source my_project_env\/bin\/activate<\/p>\n\n\n\n<p>Your terminal prompt changes to show the environment is active.<\/p>\n\n\n\n<ol start=\"4\">\n<li><strong>Installing packages in virtual environment<\/strong><\/li>\n<\/ol>\n\n\n\n<p>With the virtual environment activated:<\/p>\n\n\n\n<p>pip install package_name<\/p>\n\n\n\n<p>Packages install only in this environment, not globally.<\/p>\n\n\n\n<ol start=\"5\">\n<li><strong>Deactivating virtual environment<\/strong><\/li>\n<\/ol>\n\n\n\n<p>deactivate<\/p>\n\n\n\n<p>Your terminal returns to normal mode.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Verifying Your Installation<\/strong><\/h2>\n\n\n\n<ol>\n<li><strong>Running a simple Python program<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Create a file called &#8220;hello.py&#8221;:<\/p>\n\n\n\n<p>nano hello.py<\/p>\n\n\n\n<p>Type this code:<\/p>\n\n\n\n<p>print(&#8220;Hello, Python!&#8221;)<\/p>\n\n\n\n<p>Press Ctrl + X, then Y, then Enter to save.<\/p>\n\n\n\n<p>Run the program:<\/p>\n\n\n\n<p>python3 hello.py<\/p>\n\n\n\n<p>You should see &#8220;Hello, Python!&#8221; printed.<\/p>\n\n\n\n<ol start=\"2\">\n<li><strong>Using Python interactive mode<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Type this to enter interactive Python mode:<\/p>\n\n\n\n<p>python3<\/p>\n\n\n\n<p>Try commands:<\/p>\n\n\n\n<p>&gt;&gt;&gt; print(&#8220;Testing Python&#8221;)<\/p>\n\n\n\n<p>&gt;&gt;&gt; 5 + 3<\/p>\n\n\n\n<p>&gt;&gt;&gt; exit()<\/p>\n\n\n\n<p>Press Ctrl + D or type exit() to exit.<\/p>\n\n\n\n<ol start=\"3\">\n<li><strong>Checking pip installation<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Verify pip works:<\/p>\n\n\n\n<p>pip3 list<\/p>\n\n\n\n<p>This shows all installed packages.<\/p>\n\n\n\n<p>To learn more on Python programming, enroll in this <strong>HCL GUVI\u2019s <\/strong><a href=\"https:\/\/www.guvi.in\/zen-class\/python-course\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=how-to-install-python-on-linux-a-complete-guide\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Python course <\/strong><\/a>designed for beginners and aspiring developers. Gain hands-on experience, strengthen your problem-solving abilities, and build industry-ready Python programming skills that real employers demand while working on practical projects and earning an <strong>industry-recognized certification<\/strong>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Installing Python in Linux is straightforward once you understand the process. Most distributions provide Python through package managers, making installation a single command away.<\/p>\n\n\n\n<p>The easiest method is using your distribution&#8217;s package manager (apt, yum, or pacman). For latest versions or specific needs, install from source using pyenv.<\/p>\n\n\n\n<p>Always create virtual environments for projects to avoid package conflicts. This is a best practice that will save you debugging time later.<\/p>\n\n\n\n<p>Verify your installation by running simple Python programs and checking versions. Once Python is installed and working, you can start learning programming or develop applications.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>FAQs<\/strong><\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1780473644019\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">1. <strong>Which Python version should I install?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Install Python 3, preferably the latest stable version. Python 2 is outdated and no longer supported. Most learning materials and projects use Python 3.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1780473684176\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">2. <strong>Why do I get &#8220;python: command not found&#8221;?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Python might not be in your PATH, or it is not installed. Try &#8220;python3&#8221; instead of &#8220;python&#8221;. If that does not work, install Python using your package manager.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1780473693752\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">3. <strong>Can I have Python 2 and Python 3 together?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes, you can install both. Use &#8220;python2&#8221; for Python 2 and &#8220;python3&#8221; for Python 3. However, Python 2 is outdated, so focus on Python 3.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1780473705600\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">4. <strong>What is the difference between apt and pip?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>apt is your Linux distribution&#8217;s package manager for system software. pip is Python&#8217;s package manager for Python packages and libraries. Use apt to install Python itself, use pip to install Python packages.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1780473715131\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">5. <strong>Do I need virtual environments?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Virtual environments are strongly recommended. They keep projects isolated, preventing package conflicts. Start using them from the beginning.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Imagine you want to learn programming or build applications, and everyone tells you to use Python because it is beginner-friendly. You download Python and realize you need to install it on your computer. If you use Linux, the process is straightforward but might seem confusing if you have never done it before. Installing Python in [&hellip;]<\/p>\n","protected":false},"author":63,"featured_media":115234,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[717],"tags":[],"views":"35","authorinfo":{"name":"Vishalini Devarajan","url":"https:\/\/www.guvi.in\/blog\/author\/vishalini\/"},"thumbnailURL":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/06\/how-to-install-python-on-linux-300x115.webp","_links":{"self":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/113857"}],"collection":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/users\/63"}],"replies":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/comments?post=113857"}],"version-history":[{"count":3,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/113857\/revisions"}],"predecessor-version":[{"id":115235,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/113857\/revisions\/115235"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media\/115234"}],"wp:attachment":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media?parent=113857"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/categories?post=113857"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/tags?post=113857"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}