Skip to content

Commit

Permalink
Switch from conda install to mamba install
Browse files Browse the repository at this point in the history
Since `mamba` is recommended over `conda` as per #2385.
  • Loading branch information
weiji14 committed Mar 11, 2023
1 parent fd93c67 commit a1c29e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pygmt/datasets/tile_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def load_tile_map(region, zoom="auto", source=None, lonlat=True, wait=0, max_ret
raise ModuleNotFoundError(
"Package `contextily` is required to be installed to use this function. "
"Please use `pip install contextily` or "
"`conda install -c conda-forge contextily` "
"`mamba install -c conda-forge contextily` "
"to install the package."
)

Expand Down
2 changes: 1 addition & 1 deletion pygmt/src/tilemap.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def tilemap(
raise ModuleNotFoundError(
"Package `rioxarray` is required to be installed to use this function. "
"Please use `pip install rioxarray` or "
"`conda install -c conda-forge rioxarray` "
"`mamba install -c conda-forge rioxarray` "
"to install the package."
)

Expand Down

0 comments on commit a1c29e4

Please sign in to comment.