You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The environment is called ``esmvaltool`` by default, but it is possible to use
78
75
the option ``--name ENVIRONMENT_NAME`` to define a custom name. You can activate
79
76
the environment using the command:
80
77
78
+
~~~bash
79
+
conda activate esmvaltool
81
80
~~~
82
-
conda activate esmvaltool
83
-
~~~
84
-
{: .source}
85
81
86
-
If you run into trouble, please try recreating the environment. More information can be found in the (conda documentation)[https://docs.conda.io/en/latest/].
82
+
If you run into trouble, please try recreating the environment. More information can be found in the [conda documentation](https://docs.conda.io/en/latest/).
87
83
88
84
89
85
## Software installation
90
86
91
87
Once all prerequisites are fulfilled, ESMValTool can be installed by running
92
88
the following commands in the directory containing the ESMValTool source code:
93
89
90
+
~~~bash
91
+
pip install .
94
92
~~~
95
-
pip install .
96
-
~~~
97
-
{: .source}
98
93
99
94
## Test the installation
100
95
101
96
The next step is to check that the installation works properly.
102
97
To do this, run the tool with:
103
98
99
+
~~~bash
100
+
esmvaltool --help
104
101
~~~
105
-
esmvaltool --help
106
-
~~~
107
-
{: .source}
108
102
109
103
If everything was installed properly, ESMValTool should have printed a
110
104
help message to the console.
111
105
112
106
For a more complete installation verification, run the automated tests and
0 commit comments