{"id":6217,"date":"2021-03-09T15:21:37","date_gmt":"2021-03-09T09:51:37","guid":{"rendered":"https:\/\/www.skynats.com\/?p=6217"},"modified":"2024-12-11T17:50:07","modified_gmt":"2024-12-11T12:20:07","slug":"installing-opencv-on-ubuntu-20-04","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/installing-opencv-on-ubuntu-20-04\/","title":{"rendered":"How to install OpenCV on Ubuntu 20.04"},"content":{"rendered":"\n<p><strong>\u00a0<\/strong>The OpenCV is used for a wide range of applications. Some of them are medical image analysis, surveillance video, detecting, extracting 3D models, and many more. Let\u2019s install OpenCV on ubuntu 20.04 in two different ways.<\/p>\n\n\n\n<p>From this blog, you will get an apparent view regarding the installation and configuration of openCV on ubuntu 20.04 as a part of our&nbsp;<a href=\"https:\/\/www.skynats.com\/blog\/\" target=\"_blank\" rel=\"noreferrer noopener\"><span style=\"color:#026f9e\" class=\"has-inline-color\">server management<\/span><\/a> plan. You can also take assistance from our technical team support 24\/7 for further Migration and configuration.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-installing-opencv-on-ubuntu-20-04\"><strong>Installing OpenCV on Ubuntu 20.04<\/strong><\/h2>\n\n\n\n<p>You can install OpenCV by using two different methods.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Using Ubuntu repository<\/li>\n\n\n\n<li>Through the source<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-install-opencv-from-the-ubuntu-repository\"><strong>Install OpenCV from the Ubuntu Repository<\/strong><\/h2>\n\n\n\n<p>From the Default Ubuntu20.04 repositories you can install the OpenCV.Run the command.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo apt update\n$ sudo apt install libopencv-dev python3-opencv<\/code><\/pre>\n\n\n\n<p>All packages are necessary to run OpenCV.<\/p>\n\n\n\n<p>&nbsp;Verify the installation by importing the cv2 module and printing the OpenCV version:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ python3 -c \u201cimport cv2; print(cv2.__version__)\"<\/code><\/pre>\n\n\n\n<p>Output<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>4.2.0<\/code><\/pre>\n\n\n\n<p>This displaces the 42.0 OpenCV version.&nbsp;<\/p>\n\n\n\n<p><strong>Install OpenCV from the Source<\/strong><\/p>\n\n\n\n<p>Building the OpenCV library from the source where you can optimize the latest version for your particular system. you have complete control over the build options.<\/p>\n\n\n\n<p>Follow the steps to install the latest OpenCV version from the source.<\/p>\n\n\n\n<p><strong>Install the build tools and dependencies:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo apt install build-essential cmake git pkg-config libgtk-3-dev \\\nlibavcodec-dev libavformat-dev libswscale-dev libv4l-dev \\\nlibxvidcore-dev libx264-dev libjpeg-dev libpng-dev libtiff-dev \\\ngfortran openexr libatlas-base-dev python3-dev python3-numpy \\\nlibtbb2 libtbb-dev libdc1394-22-dev libopenexr-dev \\\nlibgstreamer-plugins-base1.0-dev libgstreamer1.0-dev\n<\/code><\/pre>\n\n\n\n<p><strong>Clone the OpenCV\u2019s and OpenCV contrib repositories:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ mkdir ~\/opencv_build &amp;&amp; cd ~\/opencv_build\n$ git clone https:\/\/github.com\/opencv\/opencv.git\n$ git clone https:\/\/github.com\/opencv\/opencv_contrib.git\n<\/code><\/pre>\n\n\n\n<p>For an older version of OpenCV, cd to both OpenCV and opencv_contrib directories and run git checkout &lt;opencv-version&gt;<\/p>\n\n\n\n<p><strong>Once done, create a temporary build directory and navigate to it:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ cd ~\/opencv_build\/opencv\n$ mkdir -p build &amp;&amp; cd build\n<\/code><\/pre>\n\n\n\n<p>Set up the OpenCV build with CMake:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ cmake -D CMAKE_BUILD_TYPE=RELEASE \\\n-D CMAKE_INSTALL_PREFIX=\/usr\/local \\\n-D INSTALL_C_EXAMPLES=ON \\\n-D INSTALL_PYTHON_EXAMPLES=ON \\\n-D OPENCV_GENERATE_PKGCONFIG=ON \\\n-D OPENCV_EXTRA_MODULES_PATH=~\/opencv_build\/opencv_contrib\/modules \\\n-D BUILD_EXAMPLES=ON ..\n<\/code><\/pre>\n\n\n\n<p>Output<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\u2014 Configuring done\n\u2014 Generating done\n\u2014 Build files have been written to: \/home\/vagrant\/opencv_build\/opencv\/build\n<\/code><\/pre>\n\n\n\n<p><strong>Start the compilation process:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ make -j8<\/code><\/pre>\n\n\n\n<p>Initially, we modify the -j flag according to the processor. To find the number of cores in the processor, type nproc.<\/p>\n\n\n\n<p>Wait for the compilation to finish.<\/p>\n\n\n\n<p><strong>Install OpenCV:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo make install<\/code><\/pre>\n\n\n\n<p>In order to verify, type the following commands.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>C++ bindings:\n$ pkg-config \u2013modversion opencv4\n<\/code><\/pre>\n\n\n\n<p>Output<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>4.3.0\nPython bindings:\npython3 -c \u201cimport cv2; print(cv2.__version__)\u201d\nOutput\n4.3.0-dev\n<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Pip Install OpenCV For Desktop Environments<\/strong><\/li>\n<\/ul>\n\n\n\n<p>To install OpenCV, run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ pip3 install opencv-python\n$ sudo pip3 install scikit-build\n$ sudo pip3 install cmake\n$ sudo pip3 install opencv-python\n<\/code><\/pre>\n\n\n\n<p>open-cv python will install only main modules. However, to install both main and contrib modules, run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo pip3 install opencv-contrib-python<\/code><\/pre>\n\n\n\n<p><strong>Pip install OpenCV For Server (headless) Environments<\/strong><\/p>\n\n\n\n<p>To install for headless environments where there is no GUI available, run:<\/p>\n\n\n\n<p>For main modules only:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo pip3 install opencv-python-headless<\/code><\/pre>\n\n\n\n<p>For both main and contrib modules:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo pip3 install opencv-contrib-python-headless<\/code><\/pre>\n\n\n\n<p>To verify installation, invoke Python3 console and run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ import csv2<\/code><\/pre>\n\n\n\n<p><strong>Error while installing OpenCV on Ubuntu 20.04<\/strong><\/p>\n\n\n\n<p>Error: ModuleNotFoundError: No module named \u2018skbuild\u2019<\/p>\n\n\n\n<p>In order to resolve this, we make sure that Pip is the latest. If not, update Pip.<\/p>\n\n\n\n<p>Eventually, run the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo pip3 install scikit-build\n$ sudo pip3 install cmake\n$ sudo pip3 install opencv-python\n<\/code><\/pre>\n\n\n\n<p><strong>Conclusion<\/strong><\/p>\n\n\n\n<p>In short, you can install the OpenCV on ubuntu 20.04 in two different ways. you can also take our <a href=\"https:\/\/www.skynats.com\/contact-us\/\" target=\"_blank\" rel=\"noreferrer noopener\"><span style=\"color:#0073a5\" class=\"has-inline-color\">technical team support<\/span><\/a> to install OpenCV from the source on your behalf.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u00a0The OpenCV is used for a wide range of applications. Some of them are medical image analysis, surveillance video, detecting, extracting 3D models, and many more. Let\u2019s install OpenCV on ubuntu 20.04 in two different ways. From this blog, you will get an apparent view regarding the installation and configuration of openCV on ubuntu 20.04 [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[542,540,643,541],"class_list":["post-6217","post","type-post","status-publish","format-standard","hentry","category-blog","tag-error-while-installing-opencv","tag-install-opencv","tag-opencv-on-ubuntu-20-04","tag-pip-install-opencv-for-desktop"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to install OpenCV on Ubuntu 20.04 | Skynats<\/title>\n<meta name=\"description\" content=\"The OpenCV is used for a wide range of applications. Some of them are medical image analysis, surveillance video, detecting, extracting 3D\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.skynats.com\/blog\/installing-opencv-on-ubuntu-20-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install OpenCV on Ubuntu 20.04\" \/>\n<meta property=\"og:description\" content=\"The OpenCV is used for a wide range of applications. Some of them are medical image analysis, surveillance video, detecting, extracting 3D\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/installing-opencv-on-ubuntu-20-04\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2021-03-09T09:51:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-11T12:20:07+00:00\" \/>\n<meta name=\"author\" content=\"Nabeela\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nabeela\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/installing-opencv-on-ubuntu-20-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/installing-opencv-on-ubuntu-20-04\\\/\"},\"author\":{\"name\":\"Nabeela\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/2968118a72bea0868796abf1237ab3e0\"},\"headline\":\"How to install OpenCV on Ubuntu 20.04\",\"datePublished\":\"2021-03-09T09:51:37+00:00\",\"dateModified\":\"2024-12-11T12:20:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/installing-opencv-on-ubuntu-20-04\\\/\"},\"wordCount\":418,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"error while installing opencv\",\"Install opencv\",\"opencv on ubuntu 20.04\",\"pip Install opencv for desktop\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/installing-opencv-on-ubuntu-20-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/installing-opencv-on-ubuntu-20-04\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/installing-opencv-on-ubuntu-20-04\\\/\",\"name\":\"How to install OpenCV on Ubuntu 20.04 | Skynats\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2021-03-09T09:51:37+00:00\",\"dateModified\":\"2024-12-11T12:20:07+00:00\",\"description\":\"The OpenCV is used for a wide range of applications. Some of them are medical image analysis, surveillance video, detecting, extracting 3D\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/installing-opencv-on-ubuntu-20-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/installing-opencv-on-ubuntu-20-04\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/installing-opencv-on-ubuntu-20-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install OpenCV on Ubuntu 20.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/2968118a72bea0868796abf1237ab3e0\",\"name\":\"Nabeela\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g\",\"caption\":\"Nabeela\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to install OpenCV on Ubuntu 20.04 | Skynats","description":"The OpenCV is used for a wide range of applications. Some of them are medical image analysis, surveillance video, detecting, extracting 3D","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:\/\/www.skynats.com\/blog\/installing-opencv-on-ubuntu-20-04\/","og_locale":"en_US","og_type":"article","og_title":"How to install OpenCV on Ubuntu 20.04","og_description":"The OpenCV is used for a wide range of applications. Some of them are medical image analysis, surveillance video, detecting, extracting 3D","og_url":"https:\/\/www.skynats.com\/blog\/installing-opencv-on-ubuntu-20-04\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2021-03-09T09:51:37+00:00","article_modified_time":"2024-12-11T12:20:07+00:00","author":"Nabeela","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Nabeela","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/installing-opencv-on-ubuntu-20-04\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/installing-opencv-on-ubuntu-20-04\/"},"author":{"name":"Nabeela","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/2968118a72bea0868796abf1237ab3e0"},"headline":"How to install OpenCV on Ubuntu 20.04","datePublished":"2021-03-09T09:51:37+00:00","dateModified":"2024-12-11T12:20:07+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/installing-opencv-on-ubuntu-20-04\/"},"wordCount":418,"commentCount":0,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["error while installing opencv","Install opencv","opencv on ubuntu 20.04","pip Install opencv for desktop"],"articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.skynats.com\/blog\/installing-opencv-on-ubuntu-20-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/installing-opencv-on-ubuntu-20-04\/","url":"https:\/\/www.skynats.com\/blog\/installing-opencv-on-ubuntu-20-04\/","name":"How to install OpenCV on Ubuntu 20.04 | Skynats","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2021-03-09T09:51:37+00:00","dateModified":"2024-12-11T12:20:07+00:00","description":"The OpenCV is used for a wide range of applications. Some of them are medical image analysis, surveillance video, detecting, extracting 3D","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/installing-opencv-on-ubuntu-20-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/installing-opencv-on-ubuntu-20-04\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/installing-opencv-on-ubuntu-20-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install OpenCV on Ubuntu 20.04"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/2968118a72bea0868796abf1237ab3e0","name":"Nabeela","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g","caption":"Nabeela"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/6217","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=6217"}],"version-history":[{"count":0,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/6217\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=6217"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=6217"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=6217"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}