Skip to content

Commit 7c9cc8b

Browse files
20260827 - install modules
1 parent 65ebe38 commit 7c9cc8b

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

dataManagement.qmd

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,33 @@ format:
1313
---
1414

1515
# Import Modules {#importModules}
16+
# Install Modules {#sec-installModules}
17+
18+
Terminal/command prompt:
19+
20+
```{bash}
21+
#| eval: false
22+
23+
pip install numpy pandas matplotlib seaborn
24+
```
25+
26+
Jupyter:
27+
28+
```{bash}
29+
#| eval: false
30+
31+
%pip install numpy pandas matplotlib seaborn
32+
```
33+
34+
Anaconda:
35+
36+
```{bash}
37+
#| eval: false
38+
39+
conda install numpy pandas matplotlib seaborn
40+
```
41+
42+
# Import Modules {#sec-importModules}
1643

1744
The default way to import a module in `Python` is:
1845

0 commit comments

Comments
 (0)