diff --git a/docs/installation.md b/docs/installation.md index 3461025fb..0faadebaa 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -19,7 +19,7 @@ mamba install -c conda-forge mintpy
-

via docker

+

or via docker

Docker allows one to run MintPy in a dedicated container, which is essentially an efficient virtual machine, and to be independent of the platform OS. First, install docker if you have not already done so. Then run the following to pull the latest stable released container image version from MintPy GitHub Container Registry to your local machine: @@ -31,7 +31,7 @@ docker pull ghcr.io/insarlab/mintpy:latest
-

via apt (Linux Debian)

+

or via apt (for Linux Debian)

MintPy is available in the main archive of the Debian GNU/Linux OS. It can be installed by using your favorite package manager or running the following command: @@ -79,7 +79,6 @@ bash Miniconda3-latest-Linux-x86_64.sh -b -p ~/tools/miniconda3 Install the dependencies into a custom existing environment [recommended] by running: ```bash -# To create a new custom environment, e.g. named "insar", run "conda create --name insar; conda activate insar" # To speedup, try "conda install mamba", then use "mamba install" to replace "conda install" below # Add "gdal'>=3'" below to install extra dependencies if you use ARIA, FRInGE, HyP3 or GMTSAR @@ -89,13 +88,13 @@ conda install -c conda-forge --file ~/tools/MintPy/requirements.txt

-

Or install the dependencies to a new environment, e.g. named "mintpy", by running:

+

Or install the dependencies to a new environment, e.g. named "insar", by running:

```bash # Add "gdal'>=3'" below to install extra dependencies if you use ARIA, FRInGE, HyP3 or GMTSAR # Add "isce2" below to install extra dependencies if you use ISCE-2 -conda create --name mintpy --file ~/tools/MintPy/requirements.txt -conda activate mintpy +conda create --name insar --file ~/tools/MintPy/requirements.txt +conda activate insar ```

@@ -113,7 +112,7 @@ python -m pip install -e ~/tools/MintPy
-

via path setup

+

or via path setup

Add below in your source file, e.g. \~/.bash_profile for bash users or \~/.cshrc for csh/tcsh users: @@ -152,7 +151,7 @@ sudo xcodebuild -license

Or install MintPy via MacPorts

-Same as the instruction for Linux, except for the "b. Install dependencies" section, which is as below: +Same as the instruction for Linux, except for the "b. Install dependencies" section, which is as below. Note that the installation procedure via MacPorts has not been maintained since Sep 2022, and will likely be phased out at some point, since conda/mamba works seamlessly on both MacOS and Linux. Install macports if you have not done so. Add the following at the bottom of your ~/.bash_profile file: diff --git a/src/mintpy/version.py b/src/mintpy/version.py index 01af6d049..4bf2a10d9 100644 --- a/src/mintpy/version.py +++ b/src/mintpy/version.py @@ -8,6 +8,7 @@ ########################################################################### Tag = collections.namedtuple('Tag', 'version date') release_history = ( + Tag('1.5.3', '2023-11-23'), Tag('1.5.2', '2023-08-09'), Tag('1.5.1', '2023-01-03'), Tag('1.5.0', '2022-11-18'),