{"id":1117,"date":"2020-04-23T10:27:13","date_gmt":"2020-04-23T15:27:13","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=1117"},"modified":"2021-03-16T02:14:18","modified_gmt":"2021-03-16T07:14:18","slug":"how-to-install-jupyter-on-centos-7","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/","title":{"rendered":"How to Install Jupyter on CentOS 7"},"content":{"rendered":"<div id=\"linux-2615373773\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>In this tutorial, we will go over the steps necessary to install Jupyter Notebook on a CentOS server.<\/p>\n<p><img decoding=\"async\" class=\"alignright size-full wp-image-1123\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/install-configure-jupyter-on-centos7-server.jpg\" alt=\"\" width=\"110\" height=\"127\" \/>Jupyter Notebook is a popular and widely used open-source web-based software that allows users to create and share documents that contain live code, equations, visualizations, and narrative text.<\/p>\n<p>Jupyter Notebook can be used for data cleaning and transformation, numerical simulations, statistical modeling, data visualization, machine learning, and much more. It has support for over 40 programming languages, including Python, Scala, R, and Julia. Let&#8217;s get started with the installation.<\/p>\n<p><!--more--><\/p>\n<h2>Prerequisites<\/h2>\n<ul>\n<li>CentOS 7 VPS with 2 GB of memory<\/li>\n<li>SSH access with root privileges<\/li>\n<\/ul>\n<h2><strong>Step 1. Log in via SSH and Update the System<\/strong><\/h2>\n<p>Login to your CentOS 7 VPS via SSH as a non-root sudo user:<\/p>\n<pre>ssh account@IP_Address -p Port_number<\/pre>\n<p>Replace &#8220;IP_Address&#8221; and &#8220;Port_number&#8221; with your server&#8217;s IP and port number. Also, replace &#8220;account&#8221; with the account you intend to log in with.<\/p>\n<p>Make sure that all installed packages on the server are updated to the latest available version by running the following command:<\/p>\n<pre>sudo yum update<\/pre>\n<p>Install the bzip2 package with:<\/p>\n<pre>sudo yum install bzip2<\/pre>\n<h2><strong>Step 2. Install Jupyter Notebook using Anaconda<\/strong><\/h2>\n<p>It is recommended to install Python and Jupyter using the Anaconda Distribution, which includes Python, the Jupyter Notebook, and other machine learning and data science related packages.<\/p>\n<p>At the time of writing this article, the latest version of Anaconda was 5.3.0. Before downloading the installation script, you should check the <a href=\"https:\/\/www.anaconda.com\/download\/\" target=\"_blank\" rel=\"noopener noreferrer\">Anaconda Download page<\/a> for a new version.<\/p>\n<p>Use the following comamnd to download the latest Anaconda installation script:<\/p>\n<pre>wget https:\/\/repo.anaconda.com\/archive\/Anaconda3-5.3.0-Linux-x86_64.sh<\/pre>\n<p>Once the download is complete, start the Anaconda installation by running the script:<\/p>\n<pre>bash Anaconda3-5.3.0-Linux-x86_64.sh<\/pre>\n<pre>Welcome to Anaconda3 5.3.0\r\n\r\nIn order to continue the installation process, please review the license\r\nagreement.\r\nPlease, press ENTER to continue\r\n&gt;&gt;&gt;\r\n<\/pre>\n<p>The script will ask you to accept the license. Press ENTER to continue, and then press ENTER to scroll through the license.<\/p>\n<pre>Do you accept the license terms? [yes|no]\r\n[no] &gt;&gt;&gt;\r\nPlease answer 'yes' or 'no':'\r\n<\/pre>\n<p>Type &#8216;yes&#8217; and hit ENTER &#8211; you will then be prompted to accept the default Anaconda installation path:<\/p>\n<pre>Anaconda3 will now be installed into this location:\r\n\/home\/rh\/anaconda3\r\n\r\n  - Press ENTER to confirm the location\r\n  - Press CTRL-C to abort the installation\r\n  - Or specify a different location below\r\n<\/pre>\n<p>Press ENTER to confirm, after which the Anaconda installation will begin.<\/p>\n<p>Once the installation is completed, the installer will ask you if you want to prepend the Anaconda install location to the PATH in your <code>~\/.bashrc<\/code> file.<\/p>\n<pre>Do you wish the installer to prepend the Anaconda3 install location\r\nto PATH in your \/home\/rh\/.bashrc ? [yes|no]\r\n<\/pre>\n<p>Type &#8216;yes&#8217; and hit ENTER. This output will follow:<\/p>\n<pre>Appending source \/home\/rh\/anaconda3\/bin\/activate to \/home\/rh\/.bashrc\r\nA backup will be made to: \/home\/rh\/.bashrc-anaconda3.bak\r\n\r\n\r\nFor this change to become active, you have to open a new terminal.\r\n\r\nThank you for installing Anaconda3!\r\n\r\n===========================================================================\r\n\r\nAnaconda is partnered with Microsoft! Microsoft VSCode is a streamlined\r\ncode editor with support for development operations like debugging, task\r\nrunning and version control.\r\n\r\nTo install Visual Studio Code, you will need:\r\n  - Administrator Privileges\r\n  - Internet connectivity\r\n\r\nVisual Studio Code License: https:\/\/code.visualstudio.com\/license\r\n\r\nDo you wish to proceed with the installation of Microsoft VSCode? [yes|no]\r\n<\/pre>\n<p>Once the Anaconda installation is completed, the installer will ask you if you want to install Microsoft VSCode. Type &#8216;no&#8217; and press ENTER. The installer will then quit.<\/p>\n<p>To activate your Anaconda installation, run:<\/p>\n<pre>source ~\/.bashrc<\/pre>\n<p>Verify the Anaconda installation by running the following command:<\/p>\n<pre>conda --version<\/pre>\n<pre>conda 4.5.11<\/pre>\n<h2>Step 3. Start Jupyter Notebook<\/h2>\n<p>Now that you have Anaconda and Jupyter Notebook installed on your CentOS 7 server, you can start the Notebook using the following command:<\/p>\n<pre>jupyter notebook<\/pre>\n<p>You will see an output similar to the following:<\/p>\n<pre>[I 03:24:08.155 NotebookApp] Writing notebook server cookie secret to \/run\/user\/1000\/jupyter\/notebook_cookie_secret\r\n[I 03:24:08.826 NotebookApp] JupyterLab extension loaded from \/home\/rh\/anaconda3\/lib\/python3.7\/site-packages\/jupyterlab\r\n[I 03:24:08.826 NotebookApp] JupyterLab application directory is \/home\/rh\/anaconda3\/share\/jupyter\/lab\r\n[I 03:24:08.837 NotebookApp] Serving notebooks from local directory: \/home\/rh\r\n[I 03:24:08.839 NotebookApp] The Jupyter Notebook is running at:\r\n[I 03:24:08.839 NotebookApp] http:\/\/localhost:8888\/?token=5e025ea9fc174fbaaacfb71511152f130cfec017da50d431\r\n[I 03:24:08.839 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).\r\n[W 03:24:08.840 NotebookApp] No web browser found: could not locate runnable browser.\r\n[C 03:24:08.840 NotebookApp]\r\n\r\n    Copy\/paste this URL into your browser when you connect for the first time,\r\n    to login with a token:\r\n        http:\/\/localhost:8888\/?token=5e025ea9fc174fbaaacfb71511152f130cfec017da50d431<\/pre>\n<p>The Jupyter Notebook server by default is listening on localhost port 8888. If this port is not available, you can specify another port using the &#8220;&#8211;port&#8221; flag. If you want to listen on all interfaces use &#8220;&#8211;ip=&#8217;*'&#8221;<\/p>\n<p>Jupyter Notebook provides help messages for all available command line arguments. If you need help with using Jupyter, run the following command:<\/p>\n<pre>jupyter notebook --help<\/pre>\n<p>Open your favorite web browser and navigate to the URL shown above. Once the application is opened, the Notebook Dashboard will be displayed and it will show a list of the notebooks, files, and sub-directories in the directory where you executed the command and the notebook server was started<\/p>\n<p>For detailed information on how to configure and use Jupyter Notebook, please check their <a href=\"http:\/\/jupyter.org\/documentation\" target=\"_blank\" rel=\"noopener noreferrer\">documentation<\/a>.<\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-1124\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/best-fully-managed-support-jupyter-centos-help-experts.jpg\" alt=\"\" width=\"110\" height=\"127\" \/>Of course, you don\u2019t have to<strong> Install Jupyter Notetbook on CentOS 7<\/strong>, if you use one of our <a href=\"https:\/\/linuxhostsupport.com\/monthly-server-management.html\">Fully\u00a0Managed VPS Support<\/a>\u00a0services, in which case you can simply ask our expert Linux admins to install Jupyter Notebook for you, along with anything else that you might need. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><strong>PS.<\/strong> If you liked this post on <strong>How to Install Jupyter on a CentOS 7<\/strong>, please share it with your friends on the social networks using the share shortcuts, or simply leave a reply in the comments section. Thanks.<\/p><div id=\"linux-1259799115\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we will go over the steps necessary to install Jupyter Notebook on a CentOS server. Jupyter Notebook is a popular and widely used open-source web-based software that allows users to create and share documents that contain live code, equations, visualizations, and narrative text. Jupyter Notebook can be used for data cleaning and [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1122,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[17,146],"class_list":["post-1117","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-centos","tag-jupyter"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Jupyter on CentOS 7 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"In this tutorial, we will go over the steps necessary to install Jupyter Notebook on a CentOS server. Jupyter Notebook is a popular and widely used\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Jupyter on CentOS 7 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, we will go over the steps necessary to install Jupyter Notebook on a CentOS server. Jupyter Notebook is a popular and widely used\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2020-04-23T15:27:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-03-16T07:14:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-jupyter-on-centos7.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install Jupyter on CentOS 7\",\"datePublished\":\"2020-04-23T15:27:13+00:00\",\"dateModified\":\"2021-03-16T07:14:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/\"},\"wordCount\":646,\"commentCount\":1,\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-jupyter-on-centos7.jpg\",\"keywords\":[\"centos\",\"jupyter\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/\",\"name\":\"How to Install Jupyter on CentOS 7 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-jupyter-on-centos7.jpg\",\"datePublished\":\"2020-04-23T15:27:13+00:00\",\"dateModified\":\"2021-03-16T07:14:18+00:00\",\"author\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"In this tutorial, we will go over the steps necessary to install Jupyter Notebook on a CentOS server. Jupyter Notebook is a popular and widely used\",\"breadcrumb\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/#primaryimage\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-jupyter-on-centos7.jpg\",\"contentUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-jupyter-on-centos7.jpg\",\"width\":750,\"height\":410},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/linuxhostsupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Jupyter on CentOS 7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Jupyter on CentOS 7 | LinuxHostSupport","description":"In this tutorial, we will go over the steps necessary to install Jupyter Notebook on a CentOS server. Jupyter Notebook is a popular and widely used","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:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Jupyter on CentOS 7 | LinuxHostSupport","og_description":"In this tutorial, we will go over the steps necessary to install Jupyter Notebook on a CentOS server. Jupyter Notebook is a popular and widely used","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2020-04-23T15:27:13+00:00","article_modified_time":"2021-03-16T07:14:18+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-jupyter-on-centos7.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install Jupyter on CentOS 7","datePublished":"2020-04-23T15:27:13+00:00","dateModified":"2021-03-16T07:14:18+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/"},"wordCount":646,"commentCount":1,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-jupyter-on-centos7.jpg","keywords":["centos","jupyter"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/","name":"How to Install Jupyter on CentOS 7 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-jupyter-on-centos7.jpg","datePublished":"2020-04-23T15:27:13+00:00","dateModified":"2021-03-16T07:14:18+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"In this tutorial, we will go over the steps necessary to install Jupyter Notebook on a CentOS server. Jupyter Notebook is a popular and widely used","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-jupyter-on-centos7.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-jupyter-on-centos7.jpg","width":750,"height":410},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jupyter-on-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Jupyter on CentOS 7"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1117","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=1117"}],"version-history":[{"count":5,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1117\/revisions"}],"predecessor-version":[{"id":1374,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1117\/revisions\/1374"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/1122"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=1117"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=1117"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=1117"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}