{"id":102608,"date":"2026-03-02T18:45:07","date_gmt":"2026-03-02T13:15:07","guid":{"rendered":"https:\/\/www.guvi.in\/blog\/?p=102608"},"modified":"2026-03-02T18:45:09","modified_gmt":"2026-03-02T13:15:09","slug":"how-to-check-if-python-is-installed-on-the-computer","status":"publish","type":"post","link":"https:\/\/www.guvi.in\/blog\/how-to-check-if-python-is-installed-on-the-computer\/","title":{"rendered":"How to Check if Python Is Installed on Your Computer"},"content":{"rendered":"\n<p>Have you ever tried running a Python script only to see an error saying \u201cPython is not recognized\u201d? Before installing anything, the first step is to check whether Python is already installed on your system.<\/p>\n\n\n\n<p>In this guide, you\u2019ll learn how to check if Python is installed on Windows, macOS, and Linux, how to verify the version, and what to do if Python is not detected.<\/p>\n\n\n\n<p><strong>TL\/DR Summary: <\/strong><\/p>\n\n\n\n<p>To quickly confirm Python installation, open Command Prompt (Windows) or Terminal (Linux\/macOS) and run python &#8211;version or python3 &#8211;version. Then verify its location using where python (Windows) or which python3(Linux\/macOS), and ensure package management works by checking pip &#8211;version or pip3 &#8211;version.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How to Check if Python Is Installed?<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. <strong>On Windows<\/strong><\/h3>\n\n\n\n<p>Before <a href=\"https:\/\/www.guvi.in\/hub\/python\/how-to-install-python-on-windows\/\" target=\"_blank\" rel=\"noreferrer noopener\">installing Python<\/a>, it is important to verify whether it is already available on your Windows system. Windows does not always come with Python preinstalled, but many users may already have it installed through development tools, Microsoft Store, or previous setups. The steps below help you confirm installation, check the version, and verify the installation path.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Step 1: Open Command Prompt<\/strong><\/h4>\n\n\n\n<p>To check Python from the system level, you need to use Command Prompt.<\/p>\n\n\n\n<ol>\n<li>Press <strong>Win + R<\/strong> on your keyboard to open the Run dialog box.<\/li>\n\n\n\n<li>Type cmd.<\/li>\n\n\n\n<li>Press <strong>Enter<\/strong>.<\/li>\n<\/ol>\n\n\n\n<p>This opens the Command Prompt window where you can run system commands.<\/p>\n\n\n\n<p>Alternatively, you can:<\/p>\n\n\n\n<ul>\n<li>Click the Start menu<\/li>\n\n\n\n<li>Search for \u201cCommand Prompt\u201d<\/li>\n\n\n\n<li>Click to open it<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Step 2: Run the Python Version Command<\/strong><\/h4>\n\n\n\n<p>In the Command Prompt window, type the following command and press Enter:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>python --version<\/code><\/pre>\n\n\n\n<p>You can also use the short form:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>python -V<\/code><\/pre>\n\n\n\n<p>Both commands perform the same function, they check whether Python is installed and display the installed version.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Step 3: Check Expected Output<\/strong><\/h4>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>If Python Is Installed<\/strong><\/h4>\n\n\n\n<p>You will see output similar to:<\/p>\n\n\n\n<p>Python 3.x.x<\/p>\n\n\n\n<p>For example:<\/p>\n\n\n\n<p>Python 3.11.6<\/p>\n\n\n\n<p>This confirms:<\/p>\n\n\n\n<ul>\n<li>Python is installed<\/li>\n\n\n\n<li>It is correctly added to the system PATH<\/li>\n\n\n\n<li>The displayed version is the active default Python interpreter<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>If Python Is Not Installed (or Not Added to PATH)<\/strong><\/h4>\n\n\n\n<p>You may see an error such as:<\/p>\n\n\n\n<p>&#8216;python&#8217; is not recognized as an internal or external command,<\/p>\n\n\n\n<p>operable program or batch file.<\/p>\n\n\n\n<p>This means one of the following:<\/p>\n\n\n\n<ul>\n<li><a href=\"https:\/\/www.guvi.in\/blog\/reasons-why-you-should-learn-python\/\" target=\"_blank\" rel=\"noreferrer noopener\">Python<\/a> is not installed on your system<\/li>\n\n\n\n<li>Python is installed but not added to the system PATH environment variable<\/li>\n<\/ul>\n\n\n\n<p>In this case, you may need to install Python or update your environment variables.<\/p>\n\n\n\n<p><em>Want to reinforce your Python setup knowledge with clear, structured notes and handy examples? Download HCL GUVI\u2019s <\/em><a href=\"https:\/\/www.guvi.in\/mlp\/python-ebook\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=how-to-check-if-python-is-installed-on-your-computer\" target=\"_blank\" rel=\"noreferrer noopener\"><em>Python eBook<\/em><\/a><em> to master key concepts like installation checks, fundamentals, and practical coding tips in one place.<\/em><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. On macOS<\/strong><\/h3>\n\n\n\n<p>Unlike Windows, <a href=\"https:\/\/www.guvi.in\/hub\/python\/how-to-install-python-on-mac-and-linux\/\" target=\"_blank\" rel=\"noreferrer noopener\">macOS<\/a> may include a system-level Python installation, but modern development typically relies on Python 3. It is important to verify whether Python 3 is installed and accessible through the Terminal.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Step 1: Open Terminal<\/strong><\/h4>\n\n\n\n<p>You can open Terminal in the following ways:<\/p>\n\n\n\n<ol>\n<li>Press <strong>Command + Space<\/strong> to open Spotlight Search.<\/li>\n\n\n\n<li>Type <strong>Terminal<\/strong>.<\/li>\n\n\n\n<li>Press <strong>Enter<\/strong>.<\/li>\n<\/ol>\n\n\n\n<p>Alternatively:<\/p>\n\n\n\n<ul>\n<li>Go to Applications \u2192 Utilities \u2192 Terminal<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Step 2: Run the Python Version Command<\/strong><\/h4>\n\n\n\n<p>In the Terminal window, type:<\/p>\n\n\n\n<p>python3 &#8211;version<\/p>\n\n\n\n<p>Press <strong>Enter<\/strong>.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Step 3: Check Expected Output<\/strong><\/h4>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>If Python Is Installed<\/strong><\/h4>\n\n\n\n<p>You will see output similar to:<\/p>\n\n\n\n<p>Python 3.x.x<\/p>\n\n\n\n<p>For example:<\/p>\n\n\n\n<p>Python 3.10.12<\/p>\n\n\n\n<p>This confirms:<\/p>\n\n\n\n<ul>\n<li>Python 3 is installed<\/li>\n\n\n\n<li>The system recognizes the interpreter<\/li>\n\n\n\n<li>It is correctly configured in your PATH<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>If Python Is Not Installed<\/strong><\/h4>\n\n\n\n<p>You may see a message such as:<\/p>\n\n\n\n<p>command not found: python3<\/p>\n\n\n\n<p>On newer macOS versions, you might see a prompt asking to install developer tools. This means Python is not currently installed or not accessible from the command line.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Why Use python3 Instead of python on macOS?<\/strong><\/h4>\n\n\n\n<p>On macOS:<\/p>\n\n\n\n<ul>\n<li>python may refer to an older system-managed version (or may not exist at all).<\/li>\n\n\n\n<li>python3 is the standard command for modern Python installations.<\/li>\n<\/ul>\n\n\n\n<p>Using python3 ensures you are working with Python 3, which is actively supported.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Check Python Installation Path on macOS<\/strong><\/h2>\n\n\n\n<p>To see where Python is installed, run:<\/p>\n\n\n\n<p>which python3<\/p>\n\n\n\n<p>If installed correctly, you will see a path similar to:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/usr\/local\/bin\/python3\n\nor\n\n\/opt\/homebrew\/bin\/python3<\/code><\/pre>\n\n\n\n<p>This confirms:<\/p>\n\n\n\n<ul>\n<li>The installation directory<\/li>\n\n\n\n<li>Which Python binary is being executed<\/li>\n\n\n\n<li>Whether it was installed via system tools or a package manager<\/li>\n<\/ul>\n\n\n\n<ul>\n<li><strong>Check Detailed Python Version Information<\/strong><\/li>\n<\/ul>\n\n\n\n<p>You can also start the Python interpreter:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>python3<\/code><\/pre>\n\n\n\n<p>If installed, you will enter the interactive Python shell. You should see something like:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Python 3.x.x (default, ...)\n\n&gt;&gt;&gt;<\/code><\/pre>\n\n\n\n<p>To exit the shell, type:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>exit()<\/code><\/pre>\n\n\n\n<ul>\n<li><strong>Verify pip Installation on macOS<\/strong><\/li>\n<\/ul>\n\n\n\n<p>To confirm that the Python package manager is installed:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>pip3 --version<\/code><\/pre>\n\n\n\n<p>If pip is installed, it will display the version number and installation path.<\/p>\n\n\n\n<p>If not installed, you may need to reinstall Python or install pip separately.<\/p>\n\n\n\n<ul>\n<li><strong>Final Verification on macOS<\/strong><\/li>\n<\/ul>\n\n\n\n<p>After confirming the version and installation path:<\/p>\n\n\n\n<ul>\n<li>Python is installed if python3 &#8211;version returns a version number.<\/li>\n\n\n\n<li>It is properly configured if which python3 returns a valid directory.<\/li>\n\n\n\n<li>Your environment is ready if pip3 &#8211;version works successfully.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. On Linux<\/strong><\/h3>\n\n\n\n<p>Most modern Linux distributions come with Python preinstalled because many system utilities depend on it. However, the default version and command name may vary depending on the distribution. The steps below help you verify whether Python is installed and determine which version is active.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Step 1: Open the Terminal<\/strong><\/h4>\n\n\n\n<p>On most Linux distributions, you can open the Terminal using:<\/p>\n\n\n\n<ul>\n<li><strong>Ctrl + Alt + T<\/strong><strong><br><\/strong>or<\/li>\n\n\n\n<li>Search for <strong>Terminal<\/strong> in the applications menu<\/li>\n<\/ul>\n\n\n\n<p>The Terminal allows you to run system-level commands to check installed software.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Step 2: Check the Python 3 Version<\/strong><\/h4>\n\n\n\n<p>In the Terminal, type:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>python3 --version<\/code><\/pre>\n\n\n\n<p>Press Enter.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Step 3: Check Expected Output<\/strong><\/h4>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>If Python Is Installed<\/strong><\/h4>\n\n\n\n<p>You will see output similar to:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Python 3.x.x<\/code><\/pre>\n\n\n\n<p>For example:<\/p>\n\n\n\n<p>Python 3.10.12<\/p>\n\n\n\n<p>This confirms:<\/p>\n\n\n\n<ul>\n<li>Python 3 is installed<\/li>\n\n\n\n<li>The interpreter is accessible via your system PATH<\/li>\n\n\n\n<li>The displayed version is the active default Python 3 installation<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>If Python Is Not Installed<\/strong><\/h4>\n\n\n\n<p>You may see an error such as:<\/p>\n\n\n\n<p>command not found: python3<\/p>\n\n\n\n<p>This means Python 3 is either:<\/p>\n\n\n\n<ul>\n<li>Not installed<\/li>\n\n\n\n<li>Not properly configured in the PATH<\/li>\n<\/ul>\n\n\n\n<p><em>Still getting started with Python setup and basics? Explore HCL GUVI\u2019s <\/em><a href=\"https:\/\/www.guvi.in\/hub\/python\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=how-to-check-if-python-is-installed-on-your-computer\" target=\"_blank\" rel=\"noreferrer noopener\"><em>Python Hub<\/em><\/a><em> for beginner-friendly guides, practical examples, and step-by-step explanations to strengthen core Python fundamentals.<\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Common Errors When Checking Python Installation<\/strong><\/h2>\n\n\n\n<ol>\n<li><strong>\u201cPython is not recognized as an internal or external command\u201d<\/strong><\/li>\n<\/ol>\n\n\n\n<p>This error appears mainly on Windows when the system cannot locate the Python executable. It usually means Python is not installed or the installation directory is not added to the PATH environment variable. Reinstalling Python with the \u201cAdd Python to PATH\u201d option enabled typically resolves this issue.<\/p>\n\n\n\n<ol start=\"2\">\n<li><strong>\u201ccommand not found: python\u201d or \u201ccommand not found: python3\u201d<\/strong><\/li>\n<\/ol>\n\n\n\n<p>This error is common on macOS and Linux systems. It indicates that Python is either not installed or the command being used does not match the installed version. Many modern systems require python3 instead of python. Running python3 &#8211;version often resolves the confusion.<\/p>\n\n\n\n<ol start=\"3\">\n<li><strong>pip is not recognized<\/strong><\/li>\n<\/ol>\n\n\n\n<p>If running pip &#8211;version returns an error, pip may not be installed or not configured in PATH. In some cases, Python is installed correctly but pip was skipped during installation. Using python -m pip &#8211;version can confirm whether pip exists but is not globally accessible.<\/p>\n\n\n\n<ol start=\"4\">\n<li><strong>Multiple Python Versions Conflict<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Some systems have multiple Python versions installed, which can cause version mismatches. For example, python may point to one version while pip installs packages for another. Running where python (Windows) or which python3(macOS\/Linux) helps identify which interpreter is active.<\/p>\n\n\n\n<ol start=\"5\">\n<li><strong>Python Opens Microsoft Store Instead of Running<\/strong><\/li>\n<\/ol>\n\n\n\n<p>On newer Windows versions, typing python may redirect to the Microsoft Store if Python is not properly installed. This means no executable is mapped in PATH. Installing Python from the official installer and enabling PATH integration fixes this behavior.<\/p>\n\n\n\n<ol start=\"6\">\n<li><strong>Incorrect Python Architecture (32-bit vs 64-bit)<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Sometimes Python is installed, but the wrong architecture version is active. This can create compatibility issues with certain libraries. Checking detailed version information using import sys; print(sys.version) helps confirm whether the build is 32-bit or 64-bit.<\/p>\n\n\n\n<ol start=\"7\">\n<li><strong>Permission Denied Errors<\/strong><\/li>\n<\/ol>\n\n\n\n<p>On Linux or macOS, permission-related errors may occur when accessing Python or installing packages. To <a href=\"https:\/\/www.guvi.in\/blog\/how-to-practice-python\/\" target=\"_blank\" rel=\"noreferrer noopener\">practice Python<\/a> effectively without running into these issues, it\u2019s recommended to use virtual environments or proper package management practices. Creating a virtual environment with python3 -m venv env and activating it before installing packages ensures you work in an isolated setup. This not only prevents permission errors but also keeps dependencies organized for each project.<\/p>\n\n\n\n<p><em>Want to move from simply checking your Python setup to writing real Python code with confidence? Enroll in HCL GUVI\u2019s <\/em><a href=\"https:\/\/www.guvi.in\/courses\/programming\/python\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=how-to-check-if-python-is-installed-on-your-computer\" target=\"_blank\" rel=\"noreferrer noopener\"><em>Python Programming Course<\/em><\/a><em> and learn with 100% online, self-paced modules, get full lifetime access, clear doubts through a dedicated forum, and practise coding on 4 gamified platforms designed to build real-world skills.<\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Best Practices While Checking Python Installation<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Always Verify Both <\/strong><strong>python<\/strong><strong> and <\/strong><strong>python3<\/strong><\/h3>\n\n\n\n<p>Different operating systems use different command mappings. Windows commonly uses python, while macOS and Linux often use python3. Checking both ensures you identify the correct active interpreter and avoid version confusion.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Confirm the Installation Path<\/strong><\/h3>\n\n\n\n<p>After verifying the version, check where <a href=\"https:\/\/www.guvi.in\/blog\/how-to-setup-a-python-environment-for-machine-learning\/\" target=\"_blank\" rel=\"noreferrer noopener\">Python environment<\/a> is installed using where python (Windows) or which python3(macOS\/Linux). This helps confirm which executable is being used, especially if multiple versions are installed.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. Check Detailed Version Information<\/strong><\/h3>\n\n\n\n<p>Do not rely only on python &#8211;version. Use the Python shell and run import sys; print(sys.version) to confirm full build details, architecture (32-bit or 64-bit), and compiler information. This is particularly important for development and production consistency.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4. Verify pip Alongside Python<\/strong><\/h3>\n\n\n\n<p>Python alone is not enough for development. Always check pip &#8211;version or python -m pip &#8211;version to ensure the package manager is installed and linked to the correct Python interpreter.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>5. Restart Terminal After Installation<\/strong><\/h3>\n\n\n\n<p>After installing or modifying environment variables, always close and reopen Command Prompt or Terminal. Environment variable changes do not apply to already open sessions.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Checking whether Python is installed on Windows, macOS, or Linux is a simple but essential first step before starting any development work. By verifying the Python version, confirming the installation path, and ensuring pip is properly configured, you eliminate common setup issues that can disrupt your workflow. Whether you are troubleshooting a PATH error, managing multiple Python versions, or preparing your environment for package installation, these steps give you full visibility into your system configuration. Once Python and pip are correctly detected, your computer is fully ready for scripting, <a href=\"https:\/\/www.guvi.in\/blog\/what-is-automation-testing\/\" target=\"_blank\" rel=\"noreferrer noopener\">automation<\/a>, software development, and modern programming tasks.<\/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-1772139627519\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>1. How do I know if Python is installed correctly on my system?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Open Command Prompt (Windows) or Terminal (macOS\/Linux) and run python &#8211;version or python3 &#8211;version. If a version number appears, Python is installed. To confirm proper configuration, also run where python (Windows) or which python3 (macOS\/Linux) to verify the installation path.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1772139643639\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>2. Why does my system say \u201cPython is not recognized\u201d even after installation?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>This usually means Python is not added to the PATH environment variable. Reinstall Python and make sure to select \u201cAdd Python to PATH\u201d during installation, or manually update the PATH settings. After changes, restart the terminal and test again.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1772139674172\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>3. How can I check if pip is linked to the correct Python version?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Run pip &#8211;version or python -m pip &#8211;version. The output shows both the pip version and the Python version it is associated with. This ensures your package manager is correctly connected to the active Python interpreter.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Have you ever tried running a Python script only to see an error saying \u201cPython is not recognized\u201d? Before installing anything, the first step is to check whether Python is already installed on your system. In this guide, you\u2019ll learn how to check if Python is installed on Windows, macOS, and Linux, how to verify [&hellip;]<\/p>\n","protected":false},"author":60,"featured_media":102740,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[717],"tags":[],"views":"3060","authorinfo":{"name":"Vaishali","url":"https:\/\/www.guvi.in\/blog\/author\/vaishali\/"},"thumbnailURL":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/02\/Python-2-300x112.webp","jetpack_featured_media_url":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/02\/Python-2.webp","_links":{"self":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/102608"}],"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\/60"}],"replies":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/comments?post=102608"}],"version-history":[{"count":7,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/102608\/revisions"}],"predecessor-version":[{"id":102900,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/102608\/revisions\/102900"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media\/102740"}],"wp:attachment":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media?parent=102608"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/categories?post=102608"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/tags?post=102608"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}