Skip to content

Commit deb72a0

Browse files
committed
Use nano in installation episode
Refs #77
1 parent e21b7f1 commit deb72a0

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

_episodes/02-installation.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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

0 commit comments

Comments
 (0)