@@ -7,7 +7,7 @@ questions:
77- " How do I confirm that the installation was successful?"
88objectives :
99- " Install ESMValTool"
10- - " Demonstate that the installation was successful"
10+ - " Demonstrate that the installation was successful"
1111keypoints :
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
145145This will extract the files to a directory named ` ~/julia/julia-1.0.5` . To run
146146Julia, you need to add the full path of Julia' s `bin` folder to PATH environment
147147variable. 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
149155bottom of the file:
150156
151157```bash
@@ -182,6 +188,16 @@ julia
182188
183189to 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
187203To 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