forked from intake/intake-esm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Docs improvement: use sphinx-design tabs (intake#504)
- Loading branch information
1 parent
aaab9d7
commit 5d1209b
Showing
2 changed files
with
29 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ dependencies: | |
- python=3.9 | ||
- s3fs | ||
- sphinx-copybutton | ||
- sphinx-design | ||
- watermark | ||
- zarr | ||
- pip: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,35 @@ | ||
# Install Intake-esm | ||
# Install intake-ESM | ||
|
||
Intake-esm can be installed from PyPI with pip: | ||
intake-ESM can be installed in three ways: | ||
|
||
```bash | ||
$ python -m pip install intake-esm | ||
``` | ||
```{eval-rst} | ||
It is also available from `conda-forge` for conda installations: | ||
.. tab-set:: | ||
```bash | ||
$ conda install -c conda-forge intake-esm | ||
``` | ||
.. tab-item:: pip | ||
Using the `pip <https://pypi.org/project/pip/>`__ package manager: | ||
.. code:: bash | ||
$ python -m pip install intake-esm | ||
.. tab-item:: conda | ||
Using the `conda <https://conda.io/>`__ package manager that comes with the | ||
Anaconda/Miniconda distribution: | ||
.. code:: bash | ||
$ conda install intake-esm --channel conda-forge | ||
.. tab-item:: Development version | ||
To install a development version from source: | ||
To install a development version from source: | ||
.. code:: bash | ||
```bash | ||
$ git clone https://github.com/intake/intake-esm | ||
$ cd intake-esm | ||
$ python -m pip install -e . | ||
$ git clone https://github.com/intake/intake-esm | ||
$ cd intake-esm | ||
$ python -m pip install -e . | ||
``` |