You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,20 +9,24 @@ The core of this mini-course is built around [Jupyter(formerly IPython) notebook
9
9
10
10
11
11
####Anaconda
12
-
We *highly* recommend that you install the [Anaconda Python Distribution](http://docs.continuum.io/anaconda/install)
12
+
We *highly* recommend that you install the [Anaconda Python Distribution](http://docs.continuum.io/anaconda/install).
13
13
14
-
You can download and install Anaconda on Windows, OSX and Linux. To ensure that it's up to date and to install all the necessary libraries to follow this course, run (in a terminal)
14
+
You can download and install Anaconda on Windows, OSX and Linux. To ensure that it's up to date, run (in a terminal)
15
15
16
16
```Bash
17
+
conda update conda
17
18
conda update jupyter
18
19
```
19
20
20
-
and then
21
+
If you prefer Miniconda (a mini version of Anaconda), to install all the necessary libraries to follow this course, run (in a terminal)
21
22
22
23
```Bash
24
+
conda update conda
25
+
conda install jupyter
23
26
conda install numpy scipy sympy
24
27
```
25
28
29
+
26
30
####Without Anaconda
27
31
If you already have Python installed, you can install the notebooks using pip
0 commit comments