summaryrefslogtreecommitdiff
path: root/tutorials/module_1/intro_to_anaconda.md
diff options
context:
space:
mode:
Diffstat (limited to 'tutorials/module_1/intro_to_anaconda.md')
-rw-r--r--tutorials/module_1/intro_to_anaconda.md33
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.
![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