Biocluster Jupyter: Difference between revisions

From Carl R. Woese Institute for Genomic Biology - University of Illinois Urbana-Champaign
Jump to navigation Jump to search
Dslater (talk | contribs)
Created page with "_TOC_ = Custom Conda Environment = * From Regular Command Line * Load Anaconda Module <pre> module load Anaconda3 </pre> * Create Conda Environment <pre> conda create --name..."
 
Dslater (talk | contribs)
No edit summary
Line 1: Line 1:
_TOC_
__TOC__


= Custom Conda Environment =
= Custom Conda Environment =

Revision as of 18:22, 9 March 2022

Custom Conda Environment

  • 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'