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/07/31 19:15] – [Notebook does not start / Kernel can not connect] bwegman1en:services:application_services:jupyter:start [2024/08/23 11:36] (current) – [Creating a new environment] bwegman1
Line 94: 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 112: Line 114:
 <code bash> <code bash>
 mamba create -y --prefix ./wikidoku mamba create -y --prefix ./wikidoku
-mamba activate ./wikidoku+conda activate ./wikidoku
 </code> </code>