File tree Expand file tree Collapse file tree 1 file changed +24
-1
lines changed
Expand file tree Collapse file tree 1 file changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -107,8 +107,31 @@ julia
107107```
108108to start the interactive Julia interpreter. Press ` Ctrl+D ` to exit.
109109
110- ## Install ESMValTool
110+ ## Install the ESMValTool package
111+
112+ To install the ESMValTool package, run
113+ ``` bash
114+ conda create -n esmvaltool -c conda-forge -c esmvalgroup esmvaltool
115+ ```
116+ This will create a new
117+ [ Conda environment] ( https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html )
118+ called ` esmvaltool ` , with the ESMValTool package and all of its dependencies installed in it.
111119
112120## Test that the installation was successful
113121
122+ To test that the installation was successful, run
123+ ``` bash
124+ conda activate esmvaltool
125+ ```
126+ to activate the conda environment called ` esmvaltool ` .
127+ Next, run
128+ ``` bash
129+ esmvaltool --help
130+ ```
131+ to display the command line help.
132+ To find the location where the ESMValTool package was installed on your system, run
133+ ``` bash
134+ python -c ' import esmvaltool; print(esmvaltool.__path__[0])'
135+ ```
136+
114137{% include links.md %}
You can’t perform that action at this time.
0 commit comments