From 1873d28735e18866f7e0167045611440e4cbe20e Mon Sep 17 00:00:00 2001 From: Christian Kolset Date: Fri, 14 Nov 2025 16:44:37 -0700 Subject: First draft of OOP tutorial complete AND worked on spectroscopy problem --- tutorials/module_1/intro_to_anaconda.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'tutorials/module_1/intro_to_anaconda.md') diff --git a/tutorials/module_1/intro_to_anaconda.md b/tutorials/module_1/intro_to_anaconda.md index f123836..4ce5e7c 100644 --- a/tutorials/module_1/intro_to_anaconda.md +++ b/tutorials/module_1/intro_to_anaconda.md @@ -11,6 +11,39 @@ The Anaconda website nicely describes *Navigator* as: To better understand how Navigator works and interacts with the anaconda ecosystem see the figure below. ![Anaconda Schematic](figures/AnacondaSchematic.png) + +```mermaid +flowchart TB + %% Sections + subgraph BE[Back-end] + C["Conda (Package Manager)"] + E[Environments] + subgraph Libs[Libraries] + L1[Numpy] + L2[Pandas] + L3[Matplotlib] + end + end + + subgraph FE["Front-end (What you see)"] + N["Navigator (Graphical Interface)"] + subgraph IDE["Integrated Development Environments (IDE)"] + S[Spyder] + J[JupyterLab] + end + end + + A[Anaconda] + + %% Connections + A --> N + N -->|Launches| IDE + N -->|Selects| E + C --> E --> Libs + A --> C + +``` + As you schematic indicated, Navigator is a tool in the Anaconda toolbox that allows the user to select and configure python environments and libraries. Let's see how we can do this. ## Getting Started -- cgit v1.2.3