Difference between revisions of "Biocluster Jupyter"

From Carl R. Woese Institute for Genomic Biology - University of Illinois Urbana-Champaign
Jump to navigation Jump to search
(Custom Conda Environment)
(Custom Conda Environment)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
__TOC__
 
__TOC__
 
= Jupyter =
 
= Jupyter =
* There is an installation of Jupyter which is accessible at [https://bioapps.igb.illinois.edu/jupyter https://bioapps.igb.illinois.edu/jupyter]
+
* There is an installation of Jupyter which is accessible at [https://bioapps3.igb.illinois.edu/jupyter https://bioapps3.igb.illinois.edu/jupyter]
  
 
= Custom Conda Environment =
 
= Custom Conda Environment =
Line 25: Line 25:
 
ipython kernel install --user --name='testenv'
 
ipython kernel install --user --name='testenv'
 
</pre>
 
</pre>
* Open Jupyterhub at [https://bioapps.igb.illinois.edu/jupyter https://bioapps.igb.illinois.edu/jupyter] and start a server.
+
* Open Jupyterhub at [https://bioapps3.igb.illinois.edu/jupyter https://bioapps3.igb.illinois.edu/jupyter] and start a server.
 
* Your '''testenv''' kernel should be listed in the list of kernels
 
* Your '''testenv''' kernel should be listed in the list of kernels
  
 
= References =
 
= References =

Latest revision as of 10:55, 26 April 2024

Jupyter[edit]

Custom Conda Environment[edit]

  • From Regular Command Line
  • Load Anaconda Module
module load Anaconda3
  • Create Conda Environment
conda create --name testenv -p $HOME/testenv
  • Activate Conda Environment
conda activate $HOME/testenv
  • Install ipython conda package
conda install ipykernel
  • Install custom ipykernel module. This will install the kernel file into $HOME/.local/share/jupyter/kernels. This can be seen by jupyterhub
ipython kernel install --user --name='testenv'

References[edit]