|
1 | 1 | .. _installation: |
2 | 2 |
|
3 | | -Installation |
4 | | -============ |
| 3 | +Installation using conda (recommended) |
| 4 | +====================================== |
5 | 5 |
|
6 | | -The **ESMBenchmarkViz** package is not yet available on the conda-forge channel. To install it, you will need to clone the repository and install it locally using `pip`. The following steps will guide you through the process. |
| 6 | +Installing `esmbenchmarkviz` from the `conda-forge` channel can be achieved by adding `conda-forge` to your channels with: |
| 7 | + |
| 8 | +.. code-block:: bash |
| 9 | +
|
| 10 | + conda config --add channels conda-forge |
| 11 | + conda config --set channel_priority strict |
| 12 | +
|
| 13 | +Once the `conda-forge` channel has been enabled, `esmbenchmarkviz` can be installed with `conda`: |
| 14 | + |
| 15 | +.. code-block:: bash |
| 16 | +
|
| 17 | + conda install esmbenchmarkviz |
| 18 | +
|
| 19 | +or with `mamba`: |
| 20 | + |
| 21 | +.. code-block:: bash |
| 22 | +
|
| 23 | + mamba install esmbenchmarkviz |
| 24 | +
|
| 25 | +
|
| 26 | +It is possible to list all of the versions of `esmbenchmarkviz` available on your platform with `conda`: |
| 27 | + |
| 28 | +.. code-block:: bash |
| 29 | +
|
| 30 | + conda search esmbenchmarkviz --channel conda-forge |
| 31 | +
|
| 32 | +
|
| 33 | +or with `mamba`: |
| 34 | + |
| 35 | +.. code-block:: bash |
| 36 | +
|
| 37 | + mamba search esmbenchmarkviz --channel conda-forge |
| 38 | +
|
| 39 | +
|
| 40 | +Alternatively, `mamba repoquery` may provide more information: |
| 41 | + |
| 42 | +.. code-block:: bash |
| 43 | +
|
| 44 | + # Search all versions available on your platform: |
| 45 | + mamba repoquery search esmbenchmarkviz --channel conda-forge |
| 46 | + |
| 47 | + # List packages depending on `esmbenchmarkviz`: |
| 48 | + mamba repoquery whoneeds esmbenchmarkviz --channel conda-forge |
| 49 | + |
| 50 | + # List dependencies of `esmbenchmarkviz`: |
| 51 | + mamba repoquery depends esmbenchmarkviz --channel conda-forge |
| 52 | +
|
| 53 | +
|
| 54 | +Installation from the source code |
| 55 | +================================= |
| 56 | + |
| 57 | +To install from the source code, you will need to clone the repository and install it locally using `pip`. The following steps will guide you through the process. |
7 | 58 |
|
8 | 59 | Prerequisites |
9 | 60 | ------------- |
@@ -60,4 +111,4 @@ If you encounter any issues during installation, please check that you have the |
60 | 111 |
|
61 | 112 | ---- |
62 | 113 |
|
63 | | -For more information, visit the project repository: https://github.com/PCMDI/ESMBenchmarkViz |
| 114 | +For more information, visit the project repository: https://github.com/PCMDI/ESMBenchmarkViz |
0 commit comments