Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
en:services:application_services:jupyter:start [2024/01/24 16:46] – [Selecting a notebook image] bwegman1en:services:application_services:jupyter:start [2024/08/23 11:36] (current) – [Creating a new environment] bwegman1
Line 67: Line 67:
   * Restart notebook server: File - Hub Control Panel - Stop My Server   * Restart notebook server: File - Hub Control Panel - Stop My Server
  
-<WRAP info> 
-This action is also available through the selfservice portal: https://jupyter-cloud.gwdg.de/selfservice 
-</WRAP> 
 ==== Installing additional python modules ==== ==== Installing additional python modules ====
 Additional Python modules can be installed via the terminal and the Python package manager "pip". To do this, a terminal must be opened via the menu "New" -> "Terminal". Afterwards <code>pip install --user <module></code> installs a new module in the home directory. Additional Python modules can be installed via the terminal and the Python package manager "pip". To do this, a terminal must be opened via the menu "New" -> "Terminal". Afterwards <code>pip install --user <module></code> installs a new module in the home directory.
Line 97: Line 94:
 **mamba** is an alternative implementation of the **conda** package manager. They are interchangeable, it's use is recommended. **mamba** is an alternative implementation of the **conda** package manager. They are interchangeable, it's use is recommended.
 https://github.com/mamba-org/mamba https://github.com/mamba-org/mamba
 +
 +There are a few steps below where **conda** is still used instead of **mamba** because in tests this appeared to be necessary. The **mamba** documentation may provide alternative and better solutions, the below examples are provided as working example, there are likely no the best solutions.
 </WRAP> </WRAP>
  
Line 115: Line 114:
 <code bash> <code bash>
 mamba create -y --prefix ./wikidoku mamba create -y --prefix ./wikidoku
-mamba activate ./wikidoku+conda activate ./wikidoku
 </code> </code>