Posts

Showing posts from September 28, 2020

How to run Jupyter Notebooks in Cloud

 Hello all, In this article, I explained on how to open and run Jupyter notebooks in Cloud/Server. As most of cloud machines prefer Ubuntu or other Linux operating systems, we may only be able to access virtual machine in cloud using command line interface (CLI). In that case, it would be a challenge to open Jupyter notebooks as we usually access it through a browser. I would like to take an example of Azure VM for explaination but this would be valid for most of cloud platforms. Login to VM Use the following command to login to your VM thru ssh ssh username@ipaddress In case if you dont have a VM, you can create one by logging onto Azure Portal and following the steps mentioned in this Azure VM Documentation Using TMUX Tmux is very useful tool which will allow to run multiple terminal sessions within terminal and also let the code running even though you closed the terminal Use tmux ls for list of open tmux sessions Use tmux to create a new session Use tmux attach to go to alrea...