Skip to content

Commit 7f3b885

Browse files
committed
Show conda list output + specify wher Julia tarball should be downloaded to
1 parent e22f7b9 commit 7f3b885

File tree

1 file changed

+30
-3
lines changed

1 file changed

+30
-3
lines changed

_episodes/02-installation.md

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,18 @@ ESMValTool is distributed using [Conda](https://conda.io/). We will be using the
4747
conda list
4848
```
4949

50+
Should output something like
51+
52+
```
53+
# packages in environment at ~/miniconda3:
54+
#
55+
# Name Version Build Channel
56+
...
57+
conda 4.8.3 py37_0
58+
...
59+
```
60+
{: .output}
61+
5062
### MacOSX
5163

5264
1. Please download Miniconda3 for MacOSX at [the miniconda page](https://docs.conda.io/en/latest/miniconda.html).
@@ -67,6 +79,19 @@ ESMValTool is distributed using [Conda](https://conda.io/). We will be using the
6779
conda list
6880
````
6981
82+
Should output something like
83+
84+
```
85+
# packages in environment at ~/miniconda3:
86+
#
87+
# Name Version Build Channel
88+
...
89+
conda 4.8.3 py37_0
90+
...
91+
```
92+
{: .output}
93+
94+
7095
### Windows
7196

7297
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.
@@ -80,22 +105,24 @@ After installing the WSL, installation can be done using the Linux installation
80105
Complete instructions for installing Julia can be found on the
81106
[Julia installation page](https://julialang.org/downloads/platform/#linux_and_freebsd).
82107
In this tutorial, we will use the following steps.
83-
First, open a bash terminal and create a directory to install Julia in
108+
First, open a bash terminal and create a directory to install Julia in and cd into it
84109

85110
```bash
86111
mkdir ~/julia
112+
cd ~/julia
87113
```
88114

89115
Next, download the file
90116
[`julia-1.0.5-linux-x86_64.tar.gz`](https://julialang-s3.julialang.org/bin/linux/x64/1.0/julia-1.0.5-linux-x86_64.tar.gz)
91117
by clicking the link or going to the [Julia downloads page](https://julialang.org/downloads/).
118+
Download the file directly to the `~/julia` directory or move it there after downloading.
92119
To extract the file, you can use the following command:
93120

94121
```bash
95-
tar -xvzf ~/Downloads/julia-1.0.5-linux-x86\_64.tar.gz -C ~/julia
122+
tar -xvzf julia-1.0.5-linux-x86\_64.tar.gz
96123
```
97124

98-
This will extract the files to a folder named `~/julia/julia-1.0.5`.
125+
This will extract the files to a directory named `~/julia/julia-1.0.5`.
99126
To run Julia, you need to add the full path of Julia's `bin` folder to PATH environment variable.
100127
To do this, you can edit the `~/.bashrc` (or `~/.bash_profile`) file.
101128
Open the file in your favorite editor and add a new line as follows at the bottom of the file:

0 commit comments

Comments
 (0)