Installation

Install from PyPI


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

pip install GRFlood

Install from conda-forge


GRFlood is also available on conda-forge. If you have Anaconda or Miniconda installed on your computer, you can create a conda Python environment to install GRFlood:

conda install -c defaults -c conda-forge GRFlood

Install from GitHub


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

pip install git+https://github.com/callback21/GRFlood

Colaboratory


Colaboratory lets you connect to a local runtime using Jupyter. This allows you to execute code on your local hardware and have access to your local file system.

pip install jupyter_http_over_ws
jupyter serverextension enable --py jupyter_http_over_ws
jupyter notebook \
  --NotebookApp.allow_origin='https://colab.research.google.com' \
  --port=8888 \
  --NotebookApp.port_retries=0

Upgrade GRFlood


If you ha ve installed GRFlood before and want to upgrade to the latest version, you can run the following command in your terminal:

pip install -U GRFlood

If you use conda, you can update GRFlood to the latest version by running the following command in your terminal:

conda update GRFlood