From 042d01050c0dc27779520e48aca29b6e45b7821b Mon Sep 17 00:00:00 2001 From: Scott Staniewicz Date: Wed, 12 Nov 2025 10:50:57 -0500 Subject: [PATCH] Update README fixed installation details - Removed old broken installation links. - Removed broken "getting started links" (to be added back once more introductory/workflow examples are added) --- README.md | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index c1a65ebbb..fca8d90c9 100644 --- a/README.md +++ b/README.md @@ -27,18 +27,20 @@ features and interface are subject to change ## Installation -- [On Linux](https://isce-framework.github.io/isce3/install_linux.html) -- [On macOS](https://isce-framework.github.io/isce3/install_osx.html) - -## Getting Started - - - [Tutorials]( -https://isce-framework.github.io/isce3/tutorial_tutorial.html) - - [Python API Reference]( -https://isce-framework.github.io/isce3/sphinx/html/index.html) - | [C++ API Reference]( -https://isce-framework.github.io/isce3/annotated.html) - - [Examples](https://github.com/isce-framework/isce3/tree/develop/share) +ISCE3 is available as a conda package via conda-forge. It has CPU-only and GPU-enabled versions available. You can install the CPU-only version with the following command: + +```bash +conda install -c conda-forge isce3-cpu +``` + +Alternatively, if you have a NVIDIA GPU with CUDA support and the CUDA driver installed, you can use the GPU-enabled package for faster processing: + +```bash +conda install -c conda-forge isce3-cuda +``` + +If you need to build ISCE3 from source, please refer to our more in-depth [build instructions](https://isce-framework.github.io/isce3/buildinstall/). + ## Contributing