diff options
| author | Christian Kolset <christian.kolset@gmail.com> | 2025-11-14 16:44:37 -0700 |
|---|---|---|
| committer | Christian Kolset <christian.kolset@gmail.com> | 2025-11-14 16:44:37 -0700 |
| commit | 1873d28735e18866f7e0167045611440e4cbe20e (patch) | |
| tree | e02fa642255bcc115e2a601a9d492863fe537caf /tutorials/module_1/intro_to_anaconda.md | |
| parent | bda9939b6e93e06f61d5a51d90d6fb4a75d4aab8 (diff) | |
First draft of OOP tutorial complete AND worked on spectroscopy problem
Diffstat (limited to 'tutorials/module_1/intro_to_anaconda.md')
| -rw-r--r-- | tutorials/module_1/intro_to_anaconda.md | 33 |
1 files changed, 33 insertions, 0 deletions
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.  + +```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 |
