{"id":1342,"date":"2017-04-15T17:58:00","date_gmt":"2017-04-15T12:28:00","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=1342"},"modified":"2026-08-18T12:52:53","modified_gmt":"2026-08-18T07:22:53","slug":"install-python-pip-boto-windows-server","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/install-python-pip-boto-windows-server\/","title":{"rendered":"Install Python, PIP and Boto on Windows server"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p>Python is a popular scripting language widely used for automation, application development, and cloud management.<\/p>\n\n\n\n<p>In this article, we will explain how to install Python, PIP, and the Boto library on Windows Server 2016. We will use Chocolatey to simplify the installation process.<\/p>\n\n\n\n<p>We will also cover how to install the Nano editor using Chocolatey.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<p>Before proceeding, make sure you have:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Windows Server 2016<\/li>\n\n\n\n<li>Administrator or appropriate PowerShell access<\/li>\n\n\n\n<li>Internet connectivity<\/li>\n\n\n\n<li>Basic knowledge of PowerShell and Python<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Implementation<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Configure PowerShell Execution Policy<\/h3>\n\n\n\n<p>Open <strong>PowerShell<\/strong> and configure the execution policy for the current user:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Set-ExecutionPolicy-ScopeCurrentUser<\/pre>\n\n\n\n<p>When prompted, select:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">RemoteSigned<\/pre>\n\n\n\n<p>This allows locally created scripts to run while requiring downloaded scripts to be appropriately signed.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Install Chocolatey<\/h3>\n\n\n\n<p>Chocolatey is a package manager for Windows. It provides functionality similar to <code>apt<\/code> on Debian\/Ubuntu and <code>yum<\/code> on RHEL\/CentOS systems.<\/p>\n\n\n\n<p>Create a WebClient object:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$script=New-ObjectNet.WebClient<\/pre>\n\n\n\n<p>You can download the Chocolatey installation script using:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$script.DownloadString(\"https:\/\/chocolatey.org\/install.ps1\")<\/pre>\n\n\n\n<p>Install Chocolatey using:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">iwrhttps:\/\/chocolatey.org\/install.ps1-UseBasicParsing|iex<\/pre>\n\n\n\n<p>Here:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>iwr<\/code> stands for <code>Invoke-WebRequest<\/code>.<\/li>\n\n\n\n<li><code>iex<\/code> stands for <code>Invoke-Expression<\/code>.<\/li>\n<\/ul>\n\n\n\n<p>After installation, verify Chocolatey:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">choco--version<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Install Python 3<\/h2>\n\n\n\n<p>Now use Chocolatey to install Python:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">chocoinstall-ypython3<\/pre>\n\n\n\n<p>Chocolatey installs Python and PIP and normally adds Python to the system PATH.<\/p>\n\n\n\n<p>Verify the Python installation:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">python--version<\/pre>\n\n\n\n<p>You can also verify PIP:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">pip--version<\/pre>\n\n\n\n<p>If Python is installed correctly, these commands should return the installed versions.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Install Boto<\/h2>\n\n\n\n<p><strong>Boto<\/strong> is a Python library that can be used to interact with AWS services.<\/p>\n\n\n\n<p>Use PIP to install Boto:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">pipinstallboto<\/pre>\n\n\n\n<p>Verify that the package was installed:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">pipshowboto<\/pre>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>Note:<\/strong> Boto is the older AWS SDK for Python. For new Python applications, <strong>Boto3<\/strong> is generally recommended.<\/p>\n<\/blockquote>\n\n\n\n<p>To install Boto3:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">pipinstallboto3<\/pre>\n\n\n\n<p>Verify the installation:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">pipshowboto3<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5: Verify Python and Boto<\/h2>\n\n\n\n<p>Open Python:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">python<\/pre>\n\n\n\n<p>Then test the Boto package:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">importboto<\/pre>\n\n\n\n<p>For Boto3:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">importboto3<\/pre>\n\n\n\n<p>If no error is displayed, the package has been successfully installed.<\/p>\n\n\n\n<p>Exit Python:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">exit()<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6: Install Nano Editor<\/h2>\n\n\n\n<p>As an additional option, you can install the <strong>Nano<\/strong> command-line editor using Chocolatey.<\/p>\n\n\n\n<p>Run:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">chocoinstall-ynano<\/pre>\n\n\n\n<p>After installation, verify it:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nano--version<\/pre>\n\n\n\n<p>You can then use Nano to edit text files from the command line.<\/p>\n\n\n\n<p>For example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nanotest.txt<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Verification<\/h2>\n\n\n\n<p>The following commands can be used to verify the complete installation:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">python--versionpip--versionchoco--versionpipshowbotopipshowboto3<\/pre>\n\n\n\n<p>If the required versions and package information are displayed, the setup is complete.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>In this article, we covered how to install <strong>Python, PIP, Boto\/Boto3, and Nano on Windows Server 2016<\/strong> using Chocolatey.<\/p>\n\n\n\n<p>Using a package manager such as Chocolatey makes it easier to install and maintain commonly used development and administration tools on Windows Server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">FAQ<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. What is Chocolatey?<\/h3>\n\n\n\n<p>Chocolatey is a package manager for Windows that allows software and utilities to be installed from the command line.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. How can I check whether Python is installed?<\/h3>\n\n\n\n<p>Run:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">python--version<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">3. How can I check whether PIP is installed?<\/h3>\n\n\n\n<p>Run:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">pip--version<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">4. How do I install Boto?<\/h3>\n\n\n\n<p>Use:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">pipinstallboto<\/pre>\n\n\n\n<p>For newer AWS Python applications, Boto3 can be installed using:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">pipinstallboto3<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">5. What is the difference between Boto and Boto3?<\/h3>\n\n\n\n<p>Boto is the older AWS SDK for Python, while Boto3 is the newer AWS SDK and is recommended for new AWS automation and application development.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">6. Can I install Python without Chocolatey?<\/h3>\n\n\n\n<p>Yes. Python can also be installed using the official Windows installer. Chocolatey simply provides a convenient command-line installation method.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Python is a popular scripting language widely used for automation, application development, and cloud management. In this article, we will explain how to install Python, PIP, and the Boto library on Windows Server 2016. We will use Chocolatey to simplify the installation process. We will also cover how to&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/install-python-pip-boto-windows-server\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Install Python, PIP and Boto on Windows server<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[226],"tags":[322,321,292,35],"class_list":{"0":"post-1342","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-windows-server","7":"tag-boto","8":"tag-choco","9":"tag-python","10":"tag-windows","11":"h-entry","13":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/install-python-pip-boto-windows-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Introduction Python is a popular scripting language widely used for automation, application development, and cloud management. In this article, we will explain how to install Python, PIP, and the Boto library on Windows Server 2016. We will use Chocolatey to simplify the installation process. We will also cover how to&hellip; Continue Reading Install Python, PIP and Boto on Windows server\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/install-python-pip-boto-windows-server\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2017-04-15T12:28:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-18T07:22:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\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\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/install-python-pip-boto-windows-server\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/install-python-pip-boto-windows-server\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"Install Python, PIP and Boto on Windows server\",\"datePublished\":\"2017-04-15T12:28:00+00:00\",\"dateModified\":\"2026-08-18T07:22:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/install-python-pip-boto-windows-server\\\/\"},\"wordCount\":508,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"keywords\":[\"boto\",\"choco\",\"python\",\"Windows\"],\"articleSection\":[\"Windows Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/install-python-pip-boto-windows-server\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/install-python-pip-boto-windows-server\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/install-python-pip-boto-windows-server\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2017-04-15T12:28:00+00:00\",\"dateModified\":\"2026-08-18T07:22:53+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/install-python-pip-boto-windows-server\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/install-python-pip-boto-windows-server\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/install-python-pip-boto-windows-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install Python, PIP and Boto on Windows server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/pheonixsolutions.com\\\/blog\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","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:\/\/pheonixsolutions.com\/blog\/install-python-pip-boto-windows-server\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Introduction Python is a popular scripting language widely used for automation, application development, and cloud management. In this article, we will explain how to install Python, PIP, and the Boto library on Windows Server 2016. We will use Chocolatey to simplify the installation process. We will also cover how to&hellip; Continue Reading Install Python, PIP and Boto on Windows server","og_url":"https:\/\/pheonixsolutions.com\/blog\/install-python-pip-boto-windows-server\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2017-04-15T12:28:00+00:00","article_modified_time":"2026-08-18T07:22:53+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/install-python-pip-boto-windows-server\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/install-python-pip-boto-windows-server\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"Install Python, PIP and Boto on Windows server","datePublished":"2017-04-15T12:28:00+00:00","dateModified":"2026-08-18T07:22:53+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/install-python-pip-boto-windows-server\/"},"wordCount":508,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"keywords":["boto","choco","python","Windows"],"articleSection":["Windows Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/install-python-pip-boto-windows-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/install-python-pip-boto-windows-server\/","url":"https:\/\/pheonixsolutions.com\/blog\/install-python-pip-boto-windows-server\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2017-04-15T12:28:00+00:00","dateModified":"2026-08-18T07:22:53+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/install-python-pip-boto-windows-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/install-python-pip-boto-windows-server\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/install-python-pip-boto-windows-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install Python, PIP and Boto on Windows server"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/pheonixsolutions.com\/blog"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-lE","jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1342","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=1342"}],"version-history":[{"count":1,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1342\/revisions"}],"predecessor-version":[{"id":10880,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1342\/revisions\/10880"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=1342"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=1342"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=1342"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}