Skip to content

Commit 805148f

Browse files
Merge pull request #95 from ESMValGroup/installation-episode-77-84-92
Bug fixes for Installation episode 77 84 92
2 parents a3ea827 + f60d934 commit 805148f

File tree

1 file changed

+21
-4
lines changed

1 file changed

+21
-4
lines changed

_episodes/02-installation.md

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ questions:
77
- "How do I confirm that the installation was successful?"
88
objectives:
99
- "Install ESMValTool"
10-
- "Demonstate that the installation was successful"
10+
- "Demonstrate that the installation was successful"
1111
keypoints:
1212
- "All the required packages can be installed using conda"
1313
- "You can find more information about installation in the documentation"
@@ -145,7 +145,13 @@ tar -xvzf julia-1.0.5-linux-x86\_64.tar.gz
145145
This will extract the files to a directory named `~/julia/julia-1.0.5`. To run
146146
Julia, you need to add the full path of Julia's `bin` folder to PATH environment
147147
variable. To do this, you can edit the `~/.bashrc` (or `~/.bash_profile`) file.
148-
Open the file in your favorite editor and add a new line as follows at the
148+
Open the file in a text editor called ``nano``:
149+
150+
```bash
151+
nano ~/.bashrc
152+
```
153+
154+
and add a new line as follows at the
149155
bottom of the file:
150156
151157
```bash
@@ -182,6 +188,16 @@ julia
182188
183189
to start the interactive Julia interpreter. Press `Ctrl+D` to exit.
184190
191+
> ## Text editor side note
192+
>
193+
> No matter what editor you use, you will need to know where it searches
194+
> for and saves files. If you start it from the shell, it will (probably)
195+
> use your current working directory as its default location. We use ``nano``
196+
> in examples here because it is one of the least complex text editors.
197+
> Press <kbd>ctrl</kbd> + <kbd>O</kbd> to save the file,
198+
> and then <kbd>ctrl</kbd> + <kbd>X</kbd> to exit ``nano``.
199+
{: .callout}
200+
185201
## Install the ESMValTool package
186202
187203
To install the ESMValTool package, run
@@ -239,8 +255,8 @@ to display the command line help.
239255
>
240256
> > ## Solution
241257
> >
242-
> > The `esmvaltool --help` command lists `-v` or `--version` as optional
243-
> > argument to get the version
258+
> > The `esmvaltool --help` command lists `version` as a
259+
> > command to get the version
244260
> >
245261
> > In my case when I run
246262
> > ~~~
@@ -250,6 +266,7 @@ to display the command line help.
250266
> > I get that my installed ESMValTool version is
251267
> > ~~~
252268
> > ESMValCore: 2.0.0
269+
> > ESMValTool: 2.0.0
253270
> > ~~~
254271
> > {: .output}
255272
> {: .solution}

0 commit comments

Comments
 (0)