File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed
Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -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
You can’t perform that action at this time.
0 commit comments