Installation and Setup.#

JaxDEM is not yet published on PyPI, so install it from the GitHub repository (or by cloning the repository and installing locally). Optional extras are defined in pyproject.toml.

Install JaxDEM from GitHub#

Basic install:

python -m pip install "git+https://github.com/cdelv/JaxDEM.git"

With CUDA 13 support:

python -m pip install "git+https://github.com/cdelv/JaxDEM.git#egg=JaxDEM[cuda13]"

With RL capabilities:

python -m pip install "git+https://github.com/cdelv/JaxDEM.git#egg=JaxDEM[rl]"

You can combine extras as needed:

python -m pip install "git+https://github.com/cdelv/JaxDEM.git#egg=JaxDEM[cuda13,rl]"

Install by Cloning (Alternative)#

You can also clone first, then install locally:

git clone https://github.com/cdelv/JaxDEM.git
cd JaxDEM
python -m pip install .

With extras:

python -m pip install ".[rl]"
python -m pip install ".[cuda13,rl]"

Next Steps#

After installation succeeds, continue with:

Total running time of the script: (0 minutes 0.000 seconds)