{"id":5345,"date":"2021-05-04T07:44:59","date_gmt":"2021-05-04T05:44:59","guid":{"rendered":"https:\/\/new.cloudandheat.com\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\/"},"modified":"2023-03-08T16:04:09","modified_gmt":"2023-03-08T15:04:09","slug":"providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook","status":"publish","type":"post","link":"https:\/\/www.cloudandheat.com\/en\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\/","title":{"rendered":"Providing your own Data-Science\/AI Playground on an OpenStack remote server with jupyter notebook"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"5345\" class=\"elementor elementor-5345\" data-elementor-post-type=\"post\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-13d712d1 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"13d712d1\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-515ab90c\" data-id=\"515ab90c\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-176b4d6c elementor-widget elementor-widget-text-editor\" data-id=\"176b4d6c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>With the growing amount and complexity of data in business processes, the importance of getting an understanding of the data increases. In the blog post <a href=\"https:\/\/www.cloudandheat.com\/data-analysis-apart-from-excel-getting-started\/\">&#8222;Data Analysis Away from Excel &#8211; Getting Started&#8220;<\/a>, the key points of data analysis with Python and Panda have already been presented. This article aims to go a step further and explores a setup for data science applications using Jupyter Notebook running on a remote server.<\/p>\n<p><\/p>\n<p>Jupyter Notebook is a product of project Jupyter, that \u201cexists to develop open-source software, open-standards, and services for interactive computing across dozens of programming languages.\u201d [1]<\/p>\n<h2>Why jupyter notebook with remote servers?<\/h2>\n<p>The multilingual, interactive computing environment Jupyter Notebook promises to be a perfect playground for data science and AI applications. Its comprehensive functionality allows users to combine code, annotations, multimedia, and visualizations into one interactive document.<\/p>\n<p><\/p>\n<p>Since Jupyter Notebook runs through a web browser, the Notebook itself can be easily hosted on a remote server, which is a strong plus for use cases with special computational needs, such as more CPU cores, RAM or GPUs. Typical examples are complex data processing, big data management or learning of extensive AI models like neural networks.<\/p>\n<p><\/p>\n<p>Therefore, it is worth taking a critical look at the possibilities and limitations and understanding how to set up Jupyter Notebook with OpenStack.<\/p>\n<h2>What opportunities does jupyter notebook provide?<\/h2>\n<ul>\n<li><strong>Showcasing &amp; Prototyping:<\/strong> The cell-based approach makes it easy to follow what the code is doing step by step. You can see both the code and the results. The code can be edited and re-run incrementally in real time, with feedback displayed directly in the browser. This facilitates exploring new concepts, prototyping, and testing small snippets of code.<\/li>\n<li><strong>Sharing &amp; Documenting:<\/strong> The ability to interact with the code makes Jupyter Notebook a perfect tool for code sharing. The user can not only view the code, but also execute it and view the results directly in the web browser. The meaning of the code can be explained line by line and the direct feedback is demonstrated.<\/li>\n<li><strong>Visualization tools:<\/strong> With the functionality to generate images and graphics inline from the code, you can play around interactively and easily gain a better understanding of the data this way.<\/li>\n<li><strong>Powerful Data Management:<\/strong> Jupyter&#8217;s features make it particularly suitable for data management. It allows data preparation, exploration, and visualization even for large amounts of data in a good way through the easy remote hosting. The parallel access and editing of data are further advantages.<\/li>\n<li><strong>Useful further functionalities:<\/strong> Jupyter Notebook provides many other nice features &#8211; for example, you can convert code to PDF, rst, markdown or HTML. Moreover, Jupyter Notebook supports other languages besides Python, such as R or Julia.<\/li>\n<\/ul>\n<h2><span dir=\"ltr\">What limitations does it have?<\/span><\/h2>\n<ul>\n<li><strong><span dir=\"ltr\">Risk of duplicate<\/span><span dir=\"ltr\">code: <\/span><\/strong><span dir=\"ltr\">The cell<\/span><span dir=\"ltr\">&#8211;<\/span><span dir=\"ltr\">based approach is more likely to generate duplicate code, in <\/span><span dir=\"ltr\">comparison to the general programming approach with functions\/classes\/objects. This <\/span><span dir=\"ltr\">complicates maintaining one version of the truth and makes collaboration difficult<\/span><\/li>\n<li><strong><span dir=\"ltr\">Session sta<\/span><span dir=\"ltr\">te not saved: <\/span><\/strong><span dir=\"ltr\">The state of any code running cannot be preserved and restored <\/span><span dir=\"ltr\">between sessions. That is why every time you load the Jupyter Notebook, you will need to re<\/span><span dir=\"ltr\">&#8211;<\/span><span dir=\"ltr\">run <\/span><span dir=\"ltr\">the code to restore its state.<\/span><\/li>\n<li><strong><span dir=\"ltr\">Some IDE features are missing: <\/span><\/strong><span dir=\"ltr\">As Jupyter Notebook i<\/span><span dir=\"ltr\">s not a full<\/span><span dir=\"ltr\">&#8211;<\/span><span dir=\"ltr\">blown development <\/span><span dir=\"ltr\">environment for Python, some useful features are not available, such as interactive debugging, <\/span><span dir=\"ltr\">code completion, and module management.<\/span><\/li>\n<\/ul>\n<h2><span style=\"font-family: Montserrat;\"><span dir=\"ltr\">For which use case do we recommend jupyter notebook?<\/span><\/span><\/h2>\n<p>\u2794 <strong>For exploration and playing around with data<\/strong>, Jupyter Notebook is a great tool with broad functionalities. The ability to run it on remote servers makes it an easy way to go when you have special compute requirements and only need some light scripting.<\/p>\n<p>\u2794 <strong>For problems that require complex code development for production<\/strong>, Jupyter Notebook may <strong>not<\/strong> be the right tool because of the difficulty in enabling good code versioning, structuring code reasonably, packaging code into functions, and developing tests for them. For this reason, also be cautious about using Jupyter Notebook when collaborating in cross-functional or larger teams.<\/p>\n<h2>How to set up jupyter notebook in the Cloud&amp;Heat OpenStack.<\/h2>\n<p>This part of the blog post shows a minimal example on how to setup a Jupyter Notebook server on our infrastructure and how to reach it from the outside.<\/p>\n<ul>\n<li>Start an openstack-instance with Ubuntu-Image 18.04 LTS or 20.04 LTS on Cloud&amp;Heat infrastructure. Find more information on how to setup a network in openstack and how to use security groups here: <a href=\"https:\/\/www.cloudandheat.com\/create-a-network-in-openstack\/\">https:\/\/www.cloudandheat.com\/create-a-network-in-openstack\/<\/a><\/li>\n<li>Define security group \u201cjupyter\u201d inside Openstack for ingress traffic on TCP port 8888<\/li>\n<\/ul>\n<p><img fetchpriority=\"high\" decoding=\"async\" class=\"alignnone wp-image-6948\" src=\"https:\/\/www.cloudandheat.com\/wp-content\/uploads\/2023\/01\/Bild1.png\" alt=\"Manage Security Group Rules: juypter\" width=\"815\" height=\"218\"><\/p>\n<p><\/p>\n<ul>\n<li>assign ssh and jupyter security group to the spawned instance<\/li>\n<li>associate floating ip to server and connect with your private key file via<\/li>\n<\/ul>\n<pre>ssh ubuntu@&lt;floating-ip&gt;\n\n$ sudo apt update\n\n$ sudo apt install -y python3-pip\n\n$ pip3 install --upgrade pip\n\n(recommended, but optional) setup an environment via venv\/conda\n\n$ pip3 install notebook\n\n$ python3 -m notebook --generate-config\n<\/pre>\n<p>Open the file ~\/.jupyter\/jupyter_notebook_config.py in your favorite text editor, change the following parameters, remove the line comments in the edited lines and save the configuration:<\/p>\n<pre>#c.NotebookApp.ip = 'localhost' \u2013&gt; change to c.NotebookApp.ip = '*'\n\n#c.NotebookApp.open_browser = True \u2013&gt; change to c.NotebookApp.open_browser = False<\/pre>\n<p>cd to dir where notebook should be executed (i.e. ~\/user.directory\/notebook-test)<\/p>\n<pre>$ python3 -m notebook<\/pre>\n<p>This command runs the notebook server in the current directory and creates a token for authentication that is used in the request.<\/p>\n<p>Access the Jupyter on remote machine via browser:<\/p>\n<pre>http:\/\/&lt;floating-ip&gt;:8888\/?token=&lt;jupyter-token&gt;<\/pre>\n<p>Create a notebook and start creating markdown or code cells<\/p>\n<p><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-6949\" src=\"https:\/\/www.cloudandheat.com\/wp-content\/uploads\/2023\/01\/Bild2.png\" alt=\"\" width=\"454\" height=\"370\"><\/p>\n<p><\/p>\n<p>Please note that the Notebook just uses the generated token for authentication. The traffic to the Notebook is NOT encrypted, therefore additional security mechanisms should be implemented. For example, you can setup and access the Virtual Machine and the notebook through a Wireguard VPN.&nbsp; Get in contact with us to get further information on how to securely operate your infrastructure:&nbsp; <a href=\"mailto:info@cloudandheat.com\">info@cloudandheat.com<\/a><\/p>\n<h2>Outlook<\/h2>\n<p>This article described the pros and cons of running code inside a Jupyter Notebook. Additionally, we described on how to setup a rudimentary Notebook server via the Cloud&amp;Heat infrastructure.<\/p>\n<p><\/p>\n<p>As mentioned before, the Jupyter Notebook is useful in a range of applications. Hosting on a remote server allows different groups of users to use different features of the platform. Some companies are building entire business models around it, like <a href=\"https:\/\/www.kaggle.com\/\">https:\/\/www.kaggle.com\/<\/a> or Google Colaboratory (<a href=\"https:\/\/colab.research.google.com\">https:\/\/colab.research.google.com<\/a>). IBM even allows access to their quantum computer via Jupyter Notebooks (IBM Quantum Lab).<\/p>\n<p><\/p>\n<p>For provisioning a data science playground with appropriate dependencies, project Jupyter also provides a list of pre-configured docker images for different use cases. Find more information at <a href=\"https:\/\/jupyter-docker-stacks.readthedocs.io\/en\/latest\/using\/selecting.html\">https:\/\/jupyter-docker-stacks.readthedocs.io\/en\/latest\/using\/selecting.html<\/a><\/p>\n<p><\/p>\n<p>The docker-images can also be deployed on the Cloud&amp;Heat managed kubernetes service to use features like monitoring, ssl-encryption, load balancing and more. For more insights feel free to contact us: <a href=\"mailto:info@cloudandheat.com\">info@cloudandheat.com<\/a><\/p>\n<h2>Sources<\/h2>\n<ul>\n<li>[1] <a href=\"https:\/\/jupyter.org\/\">https:\/\/jupyter.org\/<\/a><\/li>\n<li><a href=\"https:\/\/jupyter-docker-stacks.readthedocs.io\/en\/latest\/using\/selecting.html\">https:\/\/jupyter-docker-stacks.readthedocs.io\/en\/latest\/using\/selecting.html<\/a><\/li>\n<li><a href=\"https:\/\/www.infoworld.com\/article\/3347406\/what-is-jupyter-notebook-data-analysis-made-easier.html\">https:\/\/www.infoworld.com\/article\/3347406\/what-is-jupyter-notebook-data-analysis-made-easier.html<\/a><\/li>\n<li><a href=\"https:\/\/hub.packtpub.com\/10-reasons-data-scientists-love-jupyter-notebooks\/\">https:\/\/hub.packtpub.com\/10-reasons-data-scientists-love-jupyter-notebooks\/<\/a><\/li>\n<li><a href=\"https:\/\/betterprogramming.pub\/pros-and-cons-for-jupyter-notebooks-as-your-editor-for-data-science-work-tip-pycharm-is-probably-40e88f7827cb\">https:\/\/betterprogramming.pub\/pros-and-cons-for-jupyter-notebooks-as-your-editor-for-data-science-work-tip-pycharm-is-probably-40e88f7827cb<\/a><\/li>\n<li><a href=\"https:\/\/towardsdatascience.com\/5-reasons-why-jupyter-notebooks-suck-4dc201e27086\">https:\/\/towardsdatascience.com\/5-reasons-why-jupyter-notebooks-suck-4dc201e27086<\/a><\/li>\n<li><a href=\"https:\/\/www.kaggle.com\/\">https:\/\/www.kaggle.com\/<\/a><\/li>\n<li><a href=\"https:\/\/colab.research.google.com\">https:\/\/colab.research.google.com<\/a><\/li>\n<\/ul>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Setup a remote Datascience Environment<\/p>","protected":false},"author":2,"featured_media":5350,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_relevanssi_hide_post":"","_relevanssi_hide_content":"","_relevanssi_pin_for_all":"","_relevanssi_pin_keywords":"","_relevanssi_unpin_keywords":"","_relevanssi_related_keywords":"","_relevanssi_related_include_ids":"","_relevanssi_related_exclude_ids":"","_relevanssi_related_no_append":"","_relevanssi_related_not_related":"","_relevanssi_related_posts":"","_relevanssi_noindex_reason":"","inline_featured_image":false,"footnotes":""},"categories":[83,81],"tags":[],"class_list":["post-5345","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cloud-services","category-openstack"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Providing your own Data-Science\/AI Playground on a OpenStack remote server with jupyter notebook<\/title>\n<meta name=\"description\" content=\"Cloud&amp;Heat | Blog | Providing your own Data-Science\/AI Playground on a OpenStack remote server with jupyter notebook\" \/>\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.cloudandheat.com\/en\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Providing your own Data-Science\/AI Playground on a OpenStack remote server with jupyter notebook\" \/>\n<meta property=\"og:description\" content=\"Cloud&amp;Heat | Blog | Providing your own Data-Science\/AI Playground on a OpenStack remote server with jupyter notebook\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.cloudandheat.com\/en\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\/\" \/>\n<meta property=\"og:site_name\" content=\"Cloud &amp; Heat\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/CloudandHeat\" \/>\n<meta property=\"article:published_time\" content=\"2021-05-04T05:44:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-08T15:04:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.cloudandheat.com\/wp-content\/uploads\/2023\/01\/2021-CloudHeat-Jupyter-Notebook-Teaser.png\" \/>\n\t<meta property=\"og:image:width\" content=\"980\" \/>\n\t<meta property=\"og:image:height\" content=\"657\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Clemens M\u00fcller\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@cloudandheat\" \/>\n<meta name=\"twitter:site\" content=\"@cloudandheat\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Clemens M\u00fcller\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.cloudandheat.com\\\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.cloudandheat.com\\\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\\\/\"},\"author\":{\"name\":\"Clemens M\u00fcller\",\"@id\":\"https:\\\/\\\/www.cloudandheat.com\\\/#\\\/schema\\\/person\\\/ba09b0c184d05469ca875d2cb5ba730a\"},\"headline\":\"Providing your own Data-Science\\\/AI Playground on a OpenStack remote server with jupyter notebook\",\"datePublished\":\"2021-05-04T05:44:59+00:00\",\"dateModified\":\"2023-03-08T15:04:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.cloudandheat.com\\\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\\\/\"},\"wordCount\":1155,\"publisher\":{\"@id\":\"https:\\\/\\\/www.cloudandheat.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudandheat.com\\\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.cloudandheat.com\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/2021-CloudHeat-Jupyter-Notebook-Teaser.png\",\"articleSection\":[\"Cloud Services\",\"OpenStack\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.cloudandheat.com\\\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\\\/\",\"url\":\"https:\\\/\\\/www.cloudandheat.com\\\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\\\/\",\"name\":\"Providing your own Data-Science\\\/AI Playground on a OpenStack remote server with jupyter notebook\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.cloudandheat.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.cloudandheat.com\\\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudandheat.com\\\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.cloudandheat.com\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/2021-CloudHeat-Jupyter-Notebook-Teaser.png\",\"datePublished\":\"2021-05-04T05:44:59+00:00\",\"dateModified\":\"2023-03-08T15:04:09+00:00\",\"description\":\"Cloud&Heat | Blog | Providing your own Data-Science\\\/AI Playground on a OpenStack remote server with jupyter notebook\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.cloudandheat.com\\\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.cloudandheat.com\\\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.cloudandheat.com\\\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.cloudandheat.com\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/2021-CloudHeat-Jupyter-Notebook-Teaser.png\",\"contentUrl\":\"https:\\\/\\\/www.cloudandheat.com\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/2021-CloudHeat-Jupyter-Notebook-Teaser.png\",\"width\":980,\"height\":657},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.cloudandheat.com\\\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\\\/\\\/www.cloudandheat.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Providing your own Data-Science\\\/AI Playground on a OpenStack remote server with jupyter notebook\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.cloudandheat.com\\\/#website\",\"url\":\"https:\\\/\\\/www.cloudandheat.com\\\/\",\"name\":\"Cloud & Heat Technolgies GmbH\",\"description\":\"Cloud-Service- und Cloud-Technologie-Provider\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.cloudandheat.com\\\/#organization\"},\"alternateName\":\"Cloud and Heat Technologies GmbH\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.cloudandheat.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.cloudandheat.com\\\/#organization\",\"name\":\"Cloud&Heat Technologies GmbH\",\"url\":\"https:\\\/\\\/www.cloudandheat.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.cloudandheat.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.cloudandheat.com\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/logo.svg\",\"contentUrl\":\"https:\\\/\\\/www.cloudandheat.com\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/logo.svg\",\"width\":907,\"height\":1782,\"caption\":\"Cloud&Heat Technologies GmbH\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudandheat.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/CloudandHeat\",\"https:\\\/\\\/x.com\\\/cloudandheat\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.cloudandheat.com\\\/#\\\/schema\\\/person\\\/ba09b0c184d05469ca875d2cb5ba730a\",\"name\":\"Clemens M\u00fcller\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/350f97f507a0c231669ebf507b516e705ead54569fde6f8537dee0acc251ee2d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/350f97f507a0c231669ebf507b516e705ead54569fde6f8537dee0acc251ee2d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/350f97f507a0c231669ebf507b516e705ead54569fde6f8537dee0acc251ee2d?s=96&d=mm&r=g\",\"caption\":\"Clemens M\u00fcller\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Providing your own Data-Science\/AI Playground on an OpenStack remote server with jupyter notebook","description":"Cloud&amp;Heat | Blog | Providing your own Data-Science\/AI Playground on an OpenStack remote server with jupyter notebook","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.cloudandheat.com\/en\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\/","og_locale":"en_GB","og_type":"article","og_title":"Providing your own Data-Science\/AI Playground on a OpenStack remote server with jupyter notebook","og_description":"Cloud&Heat | Blog | Providing your own Data-Science\/AI Playground on a OpenStack remote server with jupyter notebook","og_url":"https:\/\/www.cloudandheat.com\/en\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\/","og_site_name":"Cloud &amp; Heat","article_publisher":"https:\/\/www.facebook.com\/CloudandHeat","article_published_time":"2021-05-04T05:44:59+00:00","article_modified_time":"2023-03-08T15:04:09+00:00","og_image":[{"width":980,"height":657,"url":"https:\/\/www.cloudandheat.com\/wp-content\/uploads\/2023\/01\/2021-CloudHeat-Jupyter-Notebook-Teaser.png","type":"image\/png"}],"author":"Clemens M\u00fcller","twitter_card":"summary_large_image","twitter_creator":"@cloudandheat","twitter_site":"@cloudandheat","twitter_misc":{"Written by":"Clemens M\u00fcller","Estimated reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.cloudandheat.com\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\/#article","isPartOf":{"@id":"https:\/\/www.cloudandheat.com\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\/"},"author":{"name":"Clemens M\u00fcller","@id":"https:\/\/www.cloudandheat.com\/#\/schema\/person\/ba09b0c184d05469ca875d2cb5ba730a"},"headline":"Providing your own Data-Science\/AI Playground on a OpenStack remote server with jupyter notebook","datePublished":"2021-05-04T05:44:59+00:00","dateModified":"2023-03-08T15:04:09+00:00","mainEntityOfPage":{"@id":"https:\/\/www.cloudandheat.com\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\/"},"wordCount":1155,"publisher":{"@id":"https:\/\/www.cloudandheat.com\/#organization"},"image":{"@id":"https:\/\/www.cloudandheat.com\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\/#primaryimage"},"thumbnailUrl":"https:\/\/www.cloudandheat.com\/wp-content\/uploads\/2023\/01\/2021-CloudHeat-Jupyter-Notebook-Teaser.png","articleSection":["Cloud Services","OpenStack"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/www.cloudandheat.com\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\/","url":"https:\/\/www.cloudandheat.com\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\/","name":"Providing your own Data-Science\/AI Playground on an OpenStack remote server with jupyter notebook","isPartOf":{"@id":"https:\/\/www.cloudandheat.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.cloudandheat.com\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\/#primaryimage"},"image":{"@id":"https:\/\/www.cloudandheat.com\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\/#primaryimage"},"thumbnailUrl":"https:\/\/www.cloudandheat.com\/wp-content\/uploads\/2023\/01\/2021-CloudHeat-Jupyter-Notebook-Teaser.png","datePublished":"2021-05-04T05:44:59+00:00","dateModified":"2023-03-08T15:04:09+00:00","description":"Cloud&amp;Heat | Blog | Providing your own Data-Science\/AI Playground on an OpenStack remote server with jupyter notebook","breadcrumb":{"@id":"https:\/\/www.cloudandheat.com\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.cloudandheat.com\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.cloudandheat.com\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\/#primaryimage","url":"https:\/\/www.cloudandheat.com\/wp-content\/uploads\/2023\/01\/2021-CloudHeat-Jupyter-Notebook-Teaser.png","contentUrl":"https:\/\/www.cloudandheat.com\/wp-content\/uploads\/2023\/01\/2021-CloudHeat-Jupyter-Notebook-Teaser.png","width":980,"height":657},{"@type":"BreadcrumbList","@id":"https:\/\/www.cloudandheat.com\/providing-your-own-data-science-ai-playground-on-a-openstack-remote-server-with-jupyter-notebook\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/www.cloudandheat.com\/"},{"@type":"ListItem","position":2,"name":"Providing your own Data-Science\/AI Playground on a OpenStack remote server with jupyter notebook"}]},{"@type":"WebSite","@id":"https:\/\/www.cloudandheat.com\/#website","url":"https:\/\/www.cloudandheat.com\/","name":"Cloud &amp; Heat Technolgies GmbH","description":"Cloud service and cloud technology providers","publisher":{"@id":"https:\/\/www.cloudandheat.com\/#organization"},"alternateName":"Cloud and Heat Technologies GmbH","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.cloudandheat.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/www.cloudandheat.com\/#organization","name":"Cloud&amp;Heat Technologies GmbH","url":"https:\/\/www.cloudandheat.com\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.cloudandheat.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.cloudandheat.com\/wp-content\/uploads\/2022\/08\/logo.svg","contentUrl":"https:\/\/www.cloudandheat.com\/wp-content\/uploads\/2022\/08\/logo.svg","width":907,"height":1782,"caption":"Cloud&Heat Technologies GmbH"},"image":{"@id":"https:\/\/www.cloudandheat.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/CloudandHeat","https:\/\/x.com\/cloudandheat"]},{"@type":"Person","@id":"https:\/\/www.cloudandheat.com\/#\/schema\/person\/ba09b0c184d05469ca875d2cb5ba730a","name":"Clemens M\u00fcller","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/350f97f507a0c231669ebf507b516e705ead54569fde6f8537dee0acc251ee2d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/350f97f507a0c231669ebf507b516e705ead54569fde6f8537dee0acc251ee2d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/350f97f507a0c231669ebf507b516e705ead54569fde6f8537dee0acc251ee2d?s=96&d=mm&r=g","caption":"Clemens M\u00fcller"}}]}},"_links":{"self":[{"href":"https:\/\/www.cloudandheat.com\/en\/wp-json\/wp\/v2\/posts\/5345","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.cloudandheat.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.cloudandheat.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.cloudandheat.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.cloudandheat.com\/en\/wp-json\/wp\/v2\/comments?post=5345"}],"version-history":[{"count":0,"href":"https:\/\/www.cloudandheat.com\/en\/wp-json\/wp\/v2\/posts\/5345\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.cloudandheat.com\/en\/wp-json\/wp\/v2\/media\/5350"}],"wp:attachment":[{"href":"https:\/\/www.cloudandheat.com\/en\/wp-json\/wp\/v2\/media?parent=5345"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.cloudandheat.com\/en\/wp-json\/wp\/v2\/categories?post=5345"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.cloudandheat.com\/en\/wp-json\/wp\/v2\/tags?post=5345"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}