<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.nbi.ku.dk/w/tycho/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Liz</id>
	<title>Tycho - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.nbi.ku.dk/w/tycho/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Liz"/>
	<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/tycho/Special:Contributions/Liz"/>
	<updated>2026-04-11T03:40:05Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=110</id>
		<title>Using Jupyter notebooks on the frontends</title>
		<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=110"/>
		<updated>2023-11-15T13:47:16Z</updated>

		<summary type="html">&lt;p&gt;Liz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Remote data analysis, compilations, and short test runs are possible by using Jupyter notebooks. The configuration for a Jupyter notebook server has to be done after loading the python module. As of August 3, 2021 the system version of python is 3.8.11. To access the python module provided by Anaconda3-2021.05 type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; module load python/anaconda3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This loads many packages, including ipython, Jupyter and YT. If additional packages are needed in the Anaconda environment, contact Andrius.&lt;br /&gt;
&lt;br /&gt;
To call jupyter-lab without background type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; jupiter-lab --no-browser&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is possible to call jupyter-lab using background, type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; nohup jupyter-lab --no-browser &amp;gt;&amp;amp; jlog &amp;amp;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it should appear an ID number of your job and creates jlog file containing all the &amp;quot;saved&amp;quot; Jupyter steps that are running.&lt;br /&gt;
&lt;br /&gt;
To check the URL to use and open the Jupyter kernel in the browser type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; cat jlog&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After some command lines down, it should appear a text saying: &lt;br /&gt;
&lt;br /&gt;
     &amp;quot;&amp;lt;code&amp;gt;Or copy and paste one of these URLs:&lt;br /&gt;
        http://localhost:####/lab?token=...&lt;br /&gt;
     or http://###.0.0.1:####/lab?token=...&amp;lt;/code&amp;gt;&amp;quot; &lt;br /&gt;
&lt;br /&gt;
where &amp;quot;####&amp;quot; is the localhost port ID. Copy &amp;amp; Paste any of those two links in your browser and you should be able to navigate into your home directory through the Jupyter server in your browser. By default, the server only accepts connections from the &amp;quot;localhost&amp;quot;, so an ssh tunnel is needed. In a new terminal (on your computer) do:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; ssh username@astro01.hpc.ku.dk -L ####:localhost:#### -N&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Replace &amp;quot;username&amp;quot; by your username in the cluster. Then, go to a web browser and put http://localhost:####&lt;br /&gt;
&lt;br /&gt;
==== What if ssh got lost in the pipeline? ====&lt;br /&gt;
&lt;br /&gt;
This can happen when your computer is using many localhosts. In order to check how many localhost your computer is using, type in terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; ps -Af|grep ssh|grep localhost&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can remove the localhost not being used by typing in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; ps -Af|grep ssh|grep localhost|cut -c #-#&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &#039;#-#&#039; represents the command lines of the other localhosts in the list to be deleted.&lt;br /&gt;
To double check before you kill them all, type in terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; ps -Af|grep ssh|grep localhost|cut -c #-#|xargs -n 1 echo&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To kill those localhosts type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; ps -Af|grep ssh|grep localhost|cut -c #-#|xargs -n 1 kill&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To check how many localhosts are left (if any, double check):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; ps -Af|grep ssh|grep localhost&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Liz</name></author>
	</entry>
	<entry>
		<id>https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=100</id>
		<title>Using Jupyter notebooks on the frontends</title>
		<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=100"/>
		<updated>2023-11-15T13:41:37Z</updated>

		<summary type="html">&lt;p&gt;Liz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Remote data analysis, compilations, and short test runs are possible by using Jupyter notebooks. The configuration for a Jupyter notebook server has to be done after loading the python module. As of August 3, 2021 the system version of python is 3.8.11. To access the python module provided by Anaconda3-2021.05 type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; module load python/anaconda3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This loads many packages, including ipython, Jupyter and YT. If additional packages are needed in the Anaconda environment, contact Andrius.&lt;br /&gt;
&lt;br /&gt;
To call jupyter-lab without background type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; jupiter-lab --no-browser&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is possible to call jupyter-lab using background, type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; nohup jupyter-lab --no-browser &amp;gt;&amp;amp; jlog &amp;amp;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it should appear an ID number of your job and creates jlog file containing all the &amp;quot;saved&amp;quot; Jupyter steps that are running.&lt;br /&gt;
&lt;br /&gt;
To check the URL to use and open the Jupyter kernel in the browser type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; cat jlog&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After some command lines down, it should appear a text saying: &lt;br /&gt;
&lt;br /&gt;
     &amp;quot;&amp;lt;code&amp;gt;Or copy and paste one of these URLs:&lt;br /&gt;
        http://localhost:####/lab?token=...&lt;br /&gt;
     or http://###.0.0.1:####/lab?token=...&amp;lt;/code&amp;gt;&amp;quot; &lt;br /&gt;
&lt;br /&gt;
where &amp;quot;####&amp;quot; is the localhost port ID. Copy &amp;amp; Paste any of those two links in your browser and you should be able to navigate into your home directory through the Jupyter server in your browser.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== What if ssh got lost in the pipeline? ====&lt;br /&gt;
&lt;br /&gt;
This can happen when your computer is using many localhosts. In order to check how many localhost your computer is using, type in terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; ps -Af|grep ssh|grep localhost&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can remove the localhost not being used by typing in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; ps -Af|grep ssh|grep localhost|cut -c #-#&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &#039;#-#&#039; represents the command lines of the other localhosts in the list to be deleted.&lt;br /&gt;
To double check before you kill them all, type in terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; ps -Af|grep ssh|grep localhost|cut -c #-#|xargs -n 1 echo&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To kill those localhosts type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; ps -Af|grep ssh|grep localhost|cut -c #-#|xargs -n 1 kill&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To check how many localhosts are left (if any, double check):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; ps -Af|grep ssh|grep localhost&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Liz</name></author>
	</entry>
	<entry>
		<id>https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=86</id>
		<title>Using Jupyter notebooks on the frontends</title>
		<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=86"/>
		<updated>2023-11-15T13:29:54Z</updated>

		<summary type="html">&lt;p&gt;Liz: /* What if ssh got lost in the pipeline? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Remote data analysis, compilations, and short test runs are possible by using Jupyter notebooks. The configuration for a Jupyter notebook server has to be done after loading the python module. As of August 3, 2021 the system version of python is 3.8.11. To access the python module provided by Anaconda3-2021.05 type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; module load python/anaconda3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This loads many packages, including ipython, Jupyter and YT. If additional packages are needed in the Anaconda environment, contact Andrius.&lt;br /&gt;
&lt;br /&gt;
To call jupyter-lab without background type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; jupiter-lab --no-browser&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is possible to call jupyter-lab using background, type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; nohup jupyter-lab --no-browser &amp;gt;&amp;amp; jlog &amp;amp;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it should appear an ID number of your job and creates jlog file containing all the &amp;quot;saved&amp;quot; Jupyter steps that are running.&lt;br /&gt;
&lt;br /&gt;
To check the URL to use and open the Jupyter kernel in the browser type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; cat jlog&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After some command lines down, it should appear a text saying: &lt;br /&gt;
&lt;br /&gt;
     &amp;quot;&amp;lt;code&amp;gt;Or copy and paste one of these URLs:&lt;br /&gt;
        http://localhost:####/lab?token=...&lt;br /&gt;
     or http://###.0.0.1:####/lab?token=...&amp;lt;/code&amp;gt;&amp;quot; &lt;br /&gt;
&lt;br /&gt;
where &amp;quot;####&amp;quot; is the localhost port ID. Copy &amp;amp; Paste any of those two links in your browser and you should be able to navigate into your home directory through the Jupyter server in your browser.&lt;br /&gt;
&lt;br /&gt;
==== What if ssh got lost in the pipeline? ====&lt;br /&gt;
&lt;br /&gt;
This can happen when your computer is using many localhosts. In order to check how many localhost your computer is using, type in terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; ps -Af|grep ssh|grep localhost&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can remove the localhost not being used by typing in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; ps -Af|grep ssh|grep localhost|cut -c #-#&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &#039;#-#&#039; represents the command lines of the other localhosts in the list to be deleted.&lt;br /&gt;
To double check before you kill them all, type in terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; ps -Af|grep ssh|grep localhost|cut -c #-#|xargs -n 1 echo&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To kill those localhosts type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; ps -Af|grep ssh|grep localhost|cut -c #-#|xargs -n 1 kill&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To check how many localhosts are left (if any, double check):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; ps -Af|grep ssh|grep localhost&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Liz</name></author>
	</entry>
	<entry>
		<id>https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=81</id>
		<title>Using Jupyter notebooks on the frontends</title>
		<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=81"/>
		<updated>2023-11-15T13:27:10Z</updated>

		<summary type="html">&lt;p&gt;Liz: /* What if ssh got lost in the pipeline? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Remote data analysis, compilations, and short test runs are possible by using Jupyter notebooks. The configuration for a Jupyter notebook server has to be done after loading the python module. As of August 3, 2021 the system version of python is 3.8.11. To access the python module provided by Anaconda3-2021.05 type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; module load python/anaconda3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This loads many packages, including ipython, Jupyter and YT. If additional packages are needed in the Anaconda environment, contact Andrius.&lt;br /&gt;
&lt;br /&gt;
To call jupyter-lab without background type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; jupiter-lab --no-browser&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is possible to call jupyter-lab using background, type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; nohup jupyter-lab --no-browser &amp;gt;&amp;amp; jlog &amp;amp;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it should appear an ID number of your job and creates jlog file containing all the &amp;quot;saved&amp;quot; Jupyter steps that are running.&lt;br /&gt;
&lt;br /&gt;
To check the URL to use and open the Jupyter kernel in the browser type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; cat jlog&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After some command lines down, it should appear a text saying: &lt;br /&gt;
&lt;br /&gt;
     &amp;quot;&amp;lt;code&amp;gt;Or copy and paste one of these URLs:&lt;br /&gt;
        http://localhost:####/lab?token=...&lt;br /&gt;
     or http://###.0.0.1:####/lab?token=...&amp;lt;/code&amp;gt;&amp;quot; &lt;br /&gt;
&lt;br /&gt;
where &amp;quot;####&amp;quot; is the localhost port ID. Copy &amp;amp; Paste any of those two links in your browser and you should be able to navigate into your home directory through the Jupyter server in your browser.&lt;br /&gt;
&lt;br /&gt;
==== What if ssh got lost in the pipeline? ====&lt;br /&gt;
&lt;br /&gt;
This can happen when your computer is using many localhosts. In order to check how many localhost your computer is using, type in terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; ps -Af|grep ssh|grep localhost&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can remove the localhost not being used by typing in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; ps -Af|grep ssh|grep localhost|cut -c #-#&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &#039;#-#&#039; represents the command lines of the other localhosts in the list to be deleted.&lt;br /&gt;
To double check before you kill them all, type in terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; ps -Af|grep ssh|grep localhost|cut -c #-#|xargs -n 1 echo&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To kill those localhosts type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; ps -Af|grep ssh|grep localhost|cut -c #-#|xargs -n 1 kill&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Liz</name></author>
	</entry>
	<entry>
		<id>https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=80</id>
		<title>Using Jupyter notebooks on the frontends</title>
		<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=80"/>
		<updated>2023-11-15T13:24:01Z</updated>

		<summary type="html">&lt;p&gt;Liz: /* What if ssh got lost in the pipeline? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Remote data analysis, compilations, and short test runs are possible by using Jupyter notebooks. The configuration for a Jupyter notebook server has to be done after loading the python module. As of August 3, 2021 the system version of python is 3.8.11. To access the python module provided by Anaconda3-2021.05 type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; module load python/anaconda3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This loads many packages, including ipython, Jupyter and YT. If additional packages are needed in the Anaconda environment, contact Andrius.&lt;br /&gt;
&lt;br /&gt;
To call jupyter-lab without background type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; jupiter-lab --no-browser&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is possible to call jupyter-lab using background, type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; nohup jupyter-lab --no-browser &amp;gt;&amp;amp; jlog &amp;amp;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it should appear an ID number of your job and creates jlog file containing all the &amp;quot;saved&amp;quot; Jupyter steps that are running.&lt;br /&gt;
&lt;br /&gt;
To check the URL to use and open the Jupyter kernel in the browser type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; cat jlog&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After some command lines down, it should appear a text saying: &lt;br /&gt;
&lt;br /&gt;
     &amp;quot;&amp;lt;code&amp;gt;Or copy and paste one of these URLs:&lt;br /&gt;
        http://localhost:####/lab?token=...&lt;br /&gt;
     or http://###.0.0.1:####/lab?token=...&amp;lt;/code&amp;gt;&amp;quot; &lt;br /&gt;
&lt;br /&gt;
where &amp;quot;####&amp;quot; is the localhost port ID. Copy &amp;amp; Paste any of those two links in your browser and you should be able to navigate into your home directory through the Jupyter server in your browser.&lt;br /&gt;
&lt;br /&gt;
==== What if ssh got lost in the pipeline? ====&lt;br /&gt;
&lt;br /&gt;
This can happen when your computer is using many localhosts. In order to check how many localhost your computer is using, type in terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; ps -Af|grep ssh|grep localhost&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can remove the localhost not being used by typing in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; ps -Af|grep ssh|grep localhost|cut -c #-#|xargs -n 1 echo&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &#039;#&#039; represents the command lines of the other localhosts in the list.&lt;/div&gt;</summary>
		<author><name>Liz</name></author>
	</entry>
	<entry>
		<id>https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=78</id>
		<title>Using Jupyter notebooks on the frontends</title>
		<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=78"/>
		<updated>2023-11-15T13:20:25Z</updated>

		<summary type="html">&lt;p&gt;Liz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Remote data analysis, compilations, and short test runs are possible by using Jupyter notebooks. The configuration for a Jupyter notebook server has to be done after loading the python module. As of August 3, 2021 the system version of python is 3.8.11. To access the python module provided by Anaconda3-2021.05 type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; module load python/anaconda3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This loads many packages, including ipython, Jupyter and YT. If additional packages are needed in the Anaconda environment, contact Andrius.&lt;br /&gt;
&lt;br /&gt;
To call jupyter-lab without background type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; jupiter-lab --no-browser&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is possible to call jupyter-lab using background, type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; nohup jupyter-lab --no-browser &amp;gt;&amp;amp; jlog &amp;amp;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it should appear an ID number of your job and creates jlog file containing all the &amp;quot;saved&amp;quot; Jupyter steps that are running.&lt;br /&gt;
&lt;br /&gt;
To check the URL to use and open the Jupyter kernel in the browser type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; cat jlog&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After some command lines down, it should appear a text saying: &lt;br /&gt;
&lt;br /&gt;
     &amp;quot;&amp;lt;code&amp;gt;Or copy and paste one of these URLs:&lt;br /&gt;
        http://localhost:####/lab?token=...&lt;br /&gt;
     or http://###.0.0.1:####/lab?token=...&amp;lt;/code&amp;gt;&amp;quot; &lt;br /&gt;
&lt;br /&gt;
where &amp;quot;####&amp;quot; is the localhost port ID. Copy &amp;amp; Paste any of those two links in your browser and you should be able to navigate into your home directory through the Jupyter server in your browser.&lt;br /&gt;
&lt;br /&gt;
==== What if ssh got lost in the pipeline? ====&lt;br /&gt;
&lt;br /&gt;
This can happen when your computer is using many localhosts. In order to check how many localhost your computer is using, type in terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; ps -Af|grep ssh|grep localhost&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Liz</name></author>
	</entry>
	<entry>
		<id>https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=75</id>
		<title>Using Jupyter notebooks on the frontends</title>
		<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=75"/>
		<updated>2023-11-15T13:14:58Z</updated>

		<summary type="html">&lt;p&gt;Liz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Remote data analysis, compilations, and short test runs are possible by using Jupyter notebooks. The configuration for a Jupyter notebook server has to be done after loading the python module. As of August 3, 2021 the system version of python is 3.8.11. To access the python module provided by Anaconda3-2021.05 type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; module load python/anaconda3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This loads many packages, including ipython, Jupyter and YT. If additional packages are needed in the Anaconda environment, contact Andrius.&lt;br /&gt;
&lt;br /&gt;
To call jupyter-lab without background type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; jupiter-lab --no-browser&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is possible to call jupyter-lab using background, type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; nohup jupyter-lab --no-browser &amp;gt;&amp;amp; jlog &amp;amp;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it should appear an ID number of your job and creates jlog file containing all the &amp;quot;saved&amp;quot; Jupyter steps that are running.&lt;br /&gt;
&lt;br /&gt;
To check the URL to use and open the Jupyter kernel in the browser type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; cat jlog&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After some command lines down, it should appear a text saying: &lt;br /&gt;
&lt;br /&gt;
     &amp;quot;&amp;lt;code&amp;gt;Or copy and paste one of these URLs:&lt;br /&gt;
        http://localhost:####/lab?token=...&lt;br /&gt;
     or http://###.0.0.1:####/lab?token=...&amp;lt;/code&amp;gt;&amp;quot; &lt;br /&gt;
&lt;br /&gt;
where &amp;quot;####&amp;quot; is the localhost port ID. Copy &amp;amp; Paste any of those two links in your browser and you should be able to navigate into your home directory through the Jupyter server in your browser.&lt;br /&gt;
&lt;br /&gt;
==== What if ssh got lost in the pipeline? ====&lt;/div&gt;</summary>
		<author><name>Liz</name></author>
	</entry>
	<entry>
		<id>https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=74</id>
		<title>Using Jupyter notebooks on the frontends</title>
		<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=74"/>
		<updated>2023-11-15T13:12:33Z</updated>

		<summary type="html">&lt;p&gt;Liz: /* level 3 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Remote data analysis, compilations, and short test runs are possible by using Jupyter notebooks. The configuration for a Jupyter notebook server has to be done after loading the python module. As of August 3, 2021 the system version of python is 3.8.11. To access the python module provided by Anaconda3-2021.05 type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; module load python/anaconda3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This loads many packages, including ipython, Jupyter and YT. If additional packages are needed in the Anaconda environment, contact Andrius.&lt;br /&gt;
&lt;br /&gt;
To call jupyter-lab without background type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; jupiter-lab --no-browser&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is possible to call jupyter-lab using background, type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; nohup jupyter-lab --no-browser &amp;gt;&amp;amp; jlog &amp;amp;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it should appear an ID number of your job.&lt;br /&gt;
&lt;br /&gt;
To check the URL to use and open the Jupyter kernel in the browser type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; cat jlog&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After some command lines down, it should appear a text saying: &lt;br /&gt;
&lt;br /&gt;
     &amp;quot;&amp;lt;code&amp;gt;Or copy and paste one of these URLs:&lt;br /&gt;
        http://localhost:####/lab?token=...&lt;br /&gt;
     or http://###.0.0.1:####/lab?token=...&amp;lt;/code&amp;gt;&amp;quot; &lt;br /&gt;
&lt;br /&gt;
where &amp;quot;####&amp;quot; is the localhost ID. Copy &amp;amp; Paste any of those two links in your browser and you should be able to navigate into your home directory through the Jupyter server in your browser.&lt;br /&gt;
&lt;br /&gt;
==== What if ssh got lost in the pipeline? ====&lt;/div&gt;</summary>
		<author><name>Liz</name></author>
	</entry>
	<entry>
		<id>https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=73</id>
		<title>Using Jupyter notebooks on the frontends</title>
		<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=73"/>
		<updated>2023-11-15T13:11:24Z</updated>

		<summary type="html">&lt;p&gt;Liz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Remote data analysis, compilations, and short test runs are possible by using Jupyter notebooks. The configuration for a Jupyter notebook server has to be done after loading the python module. As of August 3, 2021 the system version of python is 3.8.11. To access the python module provided by Anaconda3-2021.05 type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; module load python/anaconda3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This loads many packages, including ipython, Jupyter and YT. If additional packages are needed in the Anaconda environment, contact Andrius.&lt;br /&gt;
&lt;br /&gt;
To call jupyter-lab without background type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; jupiter-lab --no-browser&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is possible to call jupyter-lab using background, type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; nohup jupyter-lab --no-browser &amp;gt;&amp;amp; jlog &amp;amp;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it should appear an ID number of your job.&lt;br /&gt;
&lt;br /&gt;
To check the URL to use and open the Jupyter kernel in the browser type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; cat jlog&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After some command lines down, it should appear a text saying: &lt;br /&gt;
&lt;br /&gt;
     &amp;quot;&amp;lt;code&amp;gt;Or copy and paste one of these URLs:&lt;br /&gt;
        http://localhost:####/lab?token=...&lt;br /&gt;
     or http://###.0.0.1:####/lab?token=...&amp;lt;/code&amp;gt;&amp;quot; &lt;br /&gt;
&lt;br /&gt;
where &amp;quot;####&amp;quot; is the localhost ID. Copy &amp;amp; Paste any of those two links in your browser and you should be able to navigate into your home directory through the Jupyter server in your browser.&lt;br /&gt;
&lt;br /&gt;
==== level 3 ====&lt;/div&gt;</summary>
		<author><name>Liz</name></author>
	</entry>
	<entry>
		<id>https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=72</id>
		<title>Using Jupyter notebooks on the frontends</title>
		<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=72"/>
		<updated>2023-11-15T13:08:10Z</updated>

		<summary type="html">&lt;p&gt;Liz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Remote data analysis, compilations, and short test runs are possible by using Jupyter notebooks. The configuration for a Jupyter notebook server has to be done after loading the python module. As of August 3, 2021 the system version of python is 3.8.11. To access the python module provided by Anaconda3-2021.05 type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; module load python/anaconda3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This loads many packages, including ipython, Jupyter and YT. If additional packages are needed in the Anaconda environment, contact Andrius.&lt;br /&gt;
&lt;br /&gt;
To call jupyter-lab without background type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; jupiter-lab --no-browser&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is possible to call jupyter-lab using background, type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; nohup jupyter-lab --no-browser &amp;gt;&amp;amp; jlog &amp;amp;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it should appear an ID number of your job.&lt;br /&gt;
&lt;br /&gt;
To check the URL to use and open the Jupyter kernel in the browser type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; cat jlog&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After some command lines down, it should appear a text saying: &lt;br /&gt;
&lt;br /&gt;
     &amp;quot;&amp;lt;code&amp;gt;Or copy and paste one of these URLs:&lt;br /&gt;
        http://localhost:####/lab?token=...&lt;br /&gt;
     or http://###.0.0.1:####/lab?token=...&amp;lt;/code&amp;gt;&amp;quot; &lt;br /&gt;
&lt;br /&gt;
where &amp;quot;####&amp;quot; is the localhost ID. Copy &amp;amp; Paste any of those two links in your browser and you should be able to navigate into your home directory through the Jupyter server in your browser.&lt;/div&gt;</summary>
		<author><name>Liz</name></author>
	</entry>
	<entry>
		<id>https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=70</id>
		<title>Using Jupyter notebooks on the frontends</title>
		<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=70"/>
		<updated>2023-11-15T13:07:16Z</updated>

		<summary type="html">&lt;p&gt;Liz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Remote data analysis, compilations, and short test runs are possible by using Jupyter notebooks. The configuration for a Jupyter notebook server has to be done after loading the python module. As of August 3, 2021 the system version of python is 3.8.11. To access the python module provided by Anaconda3-2021.05 type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; module load python/anaconda3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This loads many packages, including ipython, Jupyter and YT. If additional packages are needed in the Anaconda environment, contact Andrius.&lt;br /&gt;
&lt;br /&gt;
To call jupyter-lab without background type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; jupiter-lab --no-browser&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is possible to call jupyter-lab using background, type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; nohup jupyter-lab --no-browser &amp;gt;&amp;amp; jlog &amp;amp;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it should appear an ID number of your job.&lt;br /&gt;
&lt;br /&gt;
To check the URL to use and open the Jupyter kernel in the browser type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; cat jlog&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After some command lines down, it should appear a text saying &amp;quot;&amp;lt;code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     Or copy and paste one of these URLs:&lt;br /&gt;
        http://localhost:####/lab?token=26d5c6636d8c325a3f8e1570555d3a3a7c5bcac6c14f40e9&lt;br /&gt;
     or http://127.0.0.1:####/lab?token=26d5c6636d8c325a3f8e1570555d3a3a7c5bcac6c14f40e9&amp;lt;/code&amp;gt;&amp;quot; &lt;br /&gt;
&lt;br /&gt;
where &amp;quot;####&amp;quot; is the localhost ID. Copy &amp;amp; Paste any of those two links in your browser and you should be able to navigate into your home directory through the Jupyter server in your browser.&lt;/div&gt;</summary>
		<author><name>Liz</name></author>
	</entry>
	<entry>
		<id>https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=67</id>
		<title>Using Jupyter notebooks on the frontends</title>
		<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=67"/>
		<updated>2023-11-15T13:06:13Z</updated>

		<summary type="html">&lt;p&gt;Liz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Remote data analysis, compilations, and short test runs are possible by using Jupyter notebooks. The configuration for a Jupyter notebook server has to be done after loading the python module. As of August 3, 2021 the system version of python is 3.8.11. To access the python module provided by Anaconda3-2021.05 type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; module load python/anaconda3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This loads many packages, including ipython, Jupyter and YT. If additional packages are needed in the Anaconda environment, contact Andrius.&lt;br /&gt;
&lt;br /&gt;
To call jupyter-lab without background type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; jupiter-lab --no-browser&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is possible to call jupyter-lab using background, type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; nohup jupyter-lab --no-browser &amp;gt;&amp;amp; jlog &amp;amp;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it should appear an ID number of your job.&lt;br /&gt;
&lt;br /&gt;
To check the URL to use and open the Jupyter kernel in the browser type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; cat jlog&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After some command lines down, it should appear a text saying &amp;quot;&amp;lt;code&amp;gt;Or copy and paste one of these URLs:&lt;br /&gt;
        http://localhost:8890/lab?token=26d5c6636d8c325a3f8e1570555d3a3a7c5bcac6c14f40e9&lt;br /&gt;
     or http://127.0.0.1:8890/lab?token=26d5c6636d8c325a3f8e1570555d3a3a7c5bcac6c14f40e9&amp;lt;/code&amp;gt;&amp;quot; &lt;br /&gt;
&lt;br /&gt;
Copy &amp;amp; Paste any of those two links in your browser and you should be able to navigate into your home directory through the Jupyter server in your browser.&lt;/div&gt;</summary>
		<author><name>Liz</name></author>
	</entry>
	<entry>
		<id>https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=63</id>
		<title>Using Jupyter notebooks on the frontends</title>
		<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=63"/>
		<updated>2023-11-15T13:05:06Z</updated>

		<summary type="html">&lt;p&gt;Liz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Remote data analysis, compilations, and short test runs are possible by using Jupyter notebooks. The configuration for a Jupyter notebook server has to be done after loading the python module. As of August 3, 2021 the system version of python is 3.8.11. To access the python module provided by Anaconda3-2021.05 type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; module load python/anaconda3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This loads many packages, including ipython, Jupyter and YT. If additional packages are needed in the Anaconda environment, contact Andrius.&lt;br /&gt;
&lt;br /&gt;
To call jupyter-lab without background type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; jupiter-lab --no-browser&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is possible to call jupyter-lab using background, type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; nohup jupyter-lab --no-browser &amp;gt;&amp;amp; jlog &amp;amp;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it should appear an ID number of your job.&lt;br /&gt;
&lt;br /&gt;
To check the URL to use and open the Jupyter kernel in the browser type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; cat jlog&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After some command lines down, it should appear a text saying &amp;quot;&amp;lt;code&amp;gt;Or copy and paste one of these URLs&amp;lt;/code&amp;gt;&amp;quot; followed by the URLs links. Copy &amp;amp; Paste any of those two links in your browser and you should be able to navigate into your home directory through the Jupyter server in your browser.&lt;/div&gt;</summary>
		<author><name>Liz</name></author>
	</entry>
	<entry>
		<id>https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=60</id>
		<title>Using Jupyter notebooks on the frontends</title>
		<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=60"/>
		<updated>2023-11-15T13:02:36Z</updated>

		<summary type="html">&lt;p&gt;Liz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Remote data analysis, compilations, and short test runs are possible by using Jupyter notebooks. The configuration for a Jupyter notebook server has to be done after loading the python module. As of August 3, 2021 the system version of python is 3.8.11. To access the python module provided by Anaconda3-2021.05 type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; module load python/anaconda3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This loads many packages, including ipython, Jupyter and YT. If additional packages are needed in the Anaconda environment, contact Andrius.&lt;br /&gt;
&lt;br /&gt;
To call jupyter-lab without background type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; jupiter-lab --no-browser&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is possible to call jupyter-lab using background, type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; nohup jupyter-lab --no-browser &amp;gt;&amp;amp; jlog &amp;amp;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it should appear an ID number of your job.&lt;br /&gt;
&lt;br /&gt;
To check the URL to use and open the Jupyter kernel in the browser type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; cat jlog&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After some command lines down, it should appear a text saying &amp;quot;Or copy and paste one of these URLs&amp;quot; followed by the URLs links. Copy &amp;amp; Paste any of those two links in your browser and you should be able to navigate into your home directory through the Jupyter server in your browser.&lt;/div&gt;</summary>
		<author><name>Liz</name></author>
	</entry>
	<entry>
		<id>https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=58</id>
		<title>Using Jupyter notebooks on the frontends</title>
		<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=58"/>
		<updated>2023-11-15T13:01:54Z</updated>

		<summary type="html">&lt;p&gt;Liz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Remote data analysis, compilations, and short test runs are possible by using Jupyter notebooks. The configuration for a Jupyter notebook server has to be done after loading the python module. As of August 3, 2021 the system version of python is 3.8.11. To access the python module provided by Anaconda3-2021.05 type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; module load python/anaconda3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This loads many packages, including ipython, Jupyter and YT. If additional packages are needed in the Anaconda environment, contact Andrius.&lt;br /&gt;
&lt;br /&gt;
To call jupyter-lab without background type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; jupiter-lab --no-browser&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is possible to call jupyter-lab using background, type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; nohup jupyter-lab --no-browser &amp;gt;&amp;amp; jlog &amp;amp;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it should appear an ID number of your job.&lt;br /&gt;
&lt;br /&gt;
To check the URL to use and open the Jupyter kernel in the browser type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; cat jlog&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some command lines down, it should appear a text saying &amp;quot;Or copy and paste one of these URLs&amp;quot; followed by the URLs links. Copy &amp;amp; Paste any of those two links in your browser and you should be able to navigate into your home directory through the Jupyter server&lt;/div&gt;</summary>
		<author><name>Liz</name></author>
	</entry>
	<entry>
		<id>https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=52</id>
		<title>Using Jupyter notebooks on the frontends</title>
		<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=52"/>
		<updated>2023-11-15T12:58:10Z</updated>

		<summary type="html">&lt;p&gt;Liz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Remote data analysis, compilations, and short test runs are possible by using Jupyter notebooks. The configuration for a Jupyter notebook server has to be done after loading the python module. As of August 3, 2021 the system version of python is 3.8.11. To access the python module provided by Anaconda3-2021.05 type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; module load python/anaconda3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This loads many packages, including ipython, Jupyter and YT. If additional packages are needed in the Anaconda environment, contact Andrius.&lt;br /&gt;
&lt;br /&gt;
To call jupyter-lab without background type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; jupiter-lab --no-browser&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is possible to call jupyter-lab using background, type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; nohup jupyter-lab --no-browser &amp;gt;&amp;amp; jlog &amp;amp;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it should appear an ID number of your job.&lt;br /&gt;
&lt;br /&gt;
To check the URL to use and open the jupyter kernel in the browser type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; cat jlog&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The &#039;cat&#039; helps to concatenate and display the content of the files used to jupyter. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; cat jlog&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Liz</name></author>
	</entry>
	<entry>
		<id>https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=46</id>
		<title>Using Jupyter notebooks on the frontends</title>
		<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=46"/>
		<updated>2023-11-15T12:53:01Z</updated>

		<summary type="html">&lt;p&gt;Liz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Remote data analysis, compilations, and short test runs are possible by using Jupyter notebooks. The configuration for a Jupyter notebook server has to be done after loading the python module. As of August 3, 2021 the system version of python is 3.8.11. To access the python module provided by Anaconda3-2021.05 type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; module load python/anaconda3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This loads many packages, including ipython, Jupyter and YT. If additional packages are needed in the Anaconda environment, contact Andrius.&lt;br /&gt;
&lt;br /&gt;
To call jupyter-lab without background type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; jupiter-lab --no-browser&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is possible to call jupyter-lab using background, type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; nohup jupyter-lab --no-browser &amp;gt;&amp;amp; jlog &amp;amp;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it should appear an ID number of your job.&lt;br /&gt;
&lt;br /&gt;
To check the URL to use and open the jupyter kernel in the broswer type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; cat jlog&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Liz</name></author>
	</entry>
	<entry>
		<id>https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=40</id>
		<title>Using Jupyter notebooks on the frontends</title>
		<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=40"/>
		<updated>2023-11-15T12:49:18Z</updated>

		<summary type="html">&lt;p&gt;Liz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Remote data analysis, compilations, and short test runs are possible by using Jupyter notebooks. The configuration for a Jupyter notebook server has to be done after loading the python module. As of August 3, 2021 the system version of python is 3.8.11. To access the python module provided by Anaconda type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; module load python/anaconda3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This loads many packages, including ipython, Jupyter and YT. If additional packages are needed in the Anaconda environment, contact Andrius.&lt;br /&gt;
&lt;br /&gt;
To call jupyter-lab without background type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; jupiter-lab --no-browser&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is possible to call jupyter-lab using background, type in terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; nohup jupyter-lab --no-browser &amp;gt;&amp;amp; jlog &amp;amp;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it should appear an ID number.&lt;/div&gt;</summary>
		<author><name>Liz</name></author>
	</entry>
	<entry>
		<id>https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=36</id>
		<title>Using Jupyter notebooks on the frontends</title>
		<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=36"/>
		<updated>2023-11-15T12:47:13Z</updated>

		<summary type="html">&lt;p&gt;Liz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Remote data analysis, compilations, and short test runs are possible by using Jupyter notebooks. The configuration for a Jupyter notebook server has to be done after loading the python module. As of August 3, 2021 the system version of python is 3.8.11. To access the python module provided by Anaconda type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; module load python/anaconda3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This loads many packages, including ipython, Jupyter and YT. If additional packages are needed in the Anaconda environment, contact Andrius.&lt;br /&gt;
&lt;br /&gt;
To call jupyter-lab without background type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; jupiter-lab --no-browser&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Liz</name></author>
	</entry>
	<entry>
		<id>https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=34</id>
		<title>Using Jupyter notebooks on the frontends</title>
		<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=34"/>
		<updated>2023-11-15T12:42:36Z</updated>

		<summary type="html">&lt;p&gt;Liz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Remote data analysis, compilations, and short test runs are possible by using Jupyter notebooks. The configuration for a Jupyter notebook server has to be done after loading the python module. As of August 3, 2021 the system version of python is 3.8.11. To access the python module provided by Anaconda type in the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; module load python/anaconda3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This loads many packages, including ipython, Jupyter and YT. If additional packages are needed in the Anaconda environment, contact Andrius.&lt;/div&gt;</summary>
		<author><name>Liz</name></author>
	</entry>
	<entry>
		<id>https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=33</id>
		<title>Using Jupyter notebooks on the frontends</title>
		<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=33"/>
		<updated>2023-11-15T12:41:30Z</updated>

		<summary type="html">&lt;p&gt;Liz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Remote data analysis, compilations, and short test runs are possible by using Jupyter notebooks. The configuration for a Jupyter notebook server has to be done after loading the python module. As of August 3, 2021 the system version of python is 3.8.11. To access the python module provided by Anaconda:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt; module load python/anaconda3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Liz</name></author>
	</entry>
	<entry>
		<id>https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=32</id>
		<title>Using Jupyter notebooks on the frontends</title>
		<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=32"/>
		<updated>2023-11-15T12:40:23Z</updated>

		<summary type="html">&lt;p&gt;Liz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Remote data analysis, compilations, and short test runs are possible by using Jupyter notebooks. The configuration for a Jupyter notebook server have to be done after loading the python module. As of August 3, 2021 the system version of python is 3.8.11. To access the python module provided by Anaconda:&lt;/div&gt;</summary>
		<author><name>Liz</name></author>
	</entry>
	<entry>
		<id>https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=27</id>
		<title>Using Jupyter notebooks on the frontends</title>
		<link rel="alternate" type="text/html" href="https://wiki.nbi.ku.dk/w/tycho/index.php?title=Using_Jupyter_notebooks_on_the_frontends&amp;diff=27"/>
		<updated>2023-11-15T12:30:41Z</updated>

		<summary type="html">&lt;p&gt;Liz: Created page with &amp;quot;Remote data analysis, compilations, and short test runs is possible by using Jupyter notebooks. To configure a Jupyter server do (after loading the python module):&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Remote data analysis, compilations, and short test runs is possible by using Jupyter notebooks. To configure a Jupyter server do (after loading the python module):&lt;/div&gt;</summary>
		<author><name>Liz</name></author>
	</entry>
</feed>