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: _episodes/02-installation.md
+33-21Lines changed: 33 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,47 +25,59 @@ We end this chapter by testing that the installation was successful.
25
25
26
26
## Install Conda
27
27
28
-
ESMValTool is distributed using Conda(link). Most users use Linux or OSX, but succesful usage has also been reported through the Windows Subsystem for Linux(WSL) (link).
29
-
30
-
We will be using the Miniconda minimal installer for conda.
31
-
32
-
> ## Python 3 Only
33
-
>
34
-
> Please make sure to download a Python 3 based installation (Miniconda3), as ESMValTool only supports Python 3
35
-
>
36
-
>
37
-
{: .callout}
38
-
28
+
ESMValTool is distributed using [Conda](https://conda.io/). We will be using the Miniconda minimal installer for conda. We suggest a Python 3 based installer, though if you happen to already have Conda installed it should also work with Python 2. For more information about installing conda, see [the conda installation documentation](https://docs.conda.io/projects/conda/en/latest/user-guide/install/index.html).
39
29
40
30
### Linux
41
31
42
-
1. Please download miniconda at [the miniconda page](https://docs.conda.io/en/latest/miniconda.html)
32
+
1. Please download Miniconda3 for Linux at [the miniconda page](https://docs.conda.io/en/latest/miniconda.html). The 64 bit version should work on any recent system. If you have problems in the next step(s) you can alternatively try a 32 bit version.
43
33
44
34
2. Next, run the installer
45
35
46
-
~~~
47
-
bash Miniconda3-latest-Linux-x86_64.sh
48
-
~~~
49
-
{:.language-bash}
36
+
~~~
37
+
bash Miniconda3-latest-Linux-x86_64.sh
38
+
~~~
39
+
{:.language-bash}
50
40
51
41
3. Follow the instructions in the installer. The defaults should normally suffice.
52
42
53
43
4. You will need to restart your terminal for the changes to have effect.
54
44
55
45
5. Verify you have a working conda installation by listing all installed packages
56
46
57
-
~~~
58
-
conda list
59
-
~~~
60
-
{:.language-bash}
47
+
~~~
48
+
conda list
49
+
~~~
50
+
{:.language-bash}
61
51
62
52
### MacOSX
63
53
54
+
1. Please download Miniconda3 for MacOSX at [the miniconda page](https://docs.conda.io/en/latest/miniconda.html).
55
+
56
+
2. Next, run the installer
57
+
58
+
~~~
59
+
bash Miniconda3-latest-MacOSX-x86_64.sh
60
+
~~~
61
+
{:.language-bash}
62
+
63
+
3. Follow the instructions in the installer. The defaults should normally suffice.
64
+
65
+
4. You will need to restart your terminal for the changes to have effect.
66
+
67
+
5. Verify you have a working conda installation by listing all installed packages
68
+
69
+
~~~
70
+
conda list
71
+
~~~
72
+
{:.language-bash}
73
+
64
74
### Windows
65
75
66
-
After installing the WSL, installation can be done using the Linux installation instructions.
76
+
ESMValTool does not directly support Windows, But succesful usage has been reported through the [Windows Subsystem for Linux(WSL)](https://docs.microsoft.com/en-us/windows/wsl/), available in Windows 10.
67
77
78
+
To install the WSL please follow the instructions [on the Windows Documentation page](https://docs.microsoft.com/en-us/windows/wsl/install-win10).
68
79
80
+
After installing the WSL, installation can be done using the Linux installation instructions.
0 commit comments