Skip to content

Installation

Install from PyPI

hypercoast is available on PyPI. To install hypercoast, run this command in your terminal:

1
pip install hypercoast

HyperCoast has some optional dependencies that are not installed by default, such as cartopy, earthaccess, mapclassify, and pyvista. To install all optional dependencies all at once, run the following command:

1
pip install "hypercoast[extra]"

Install from conda-forge

hypercoast is also available on conda-forge. If you have Anaconda or Miniconda installed on your computer, you can install hypercoast using the following command:

1
conda install -c conda-forge hypercoast

Alternatively, you can create a new conda environment and install hypercoast in the new environment. This is a good practice because it avoids potential conflicts with other packages installed in your base environment.

1
2
3
4
conda install -n base mamba -c conda-forge
conda create -n hyper python=3.11
conda activate hyper
mamba install -c conda-forge hypercoast

To install the optional dependencies, run the following command:

1
mamba install -c conda-forge cartopy earthaccess mapclassify pyvista trame-vtk trame-vuetify

Install from GitHub

To install the development version from GitHub using Git, run the following command in your terminal:

1
pip install git+https://github.com/opengeos/hypercoast