ISCE2.4.2+Ubuntu18.04(全新系统)安装过程记录

主要工作:安装ISCE 2.4.2 顺带安装GMTSAR

1 安装GMTSAR

1.1 更换国内阿里源
ISCE2.4.2+Ubuntu18.04(全新系统)安装过程记录_第1张图片
1.2 更新软件

打开终端,输入sudo apt-get update
sudo apt-get upgrade

1.3 安装 gmt 和库

sudo apt-get install gmt libgmt-dev

1.4 安装其他软件

sudo apt-get install git
sudo apt-get install build-essential
sudo apt-get install gfortran
sudo apt-get install libhdf5-dev libtiff5-dev

1.5 安装GMTSAR

git clone --branch 5.7 https://github.com/gmtsar/gmtsar.git GMTSAR
cd GMTSAR
sudo mkdir /usr/local/orbits
sudo apt install autoconf
autoconf
 ./configure --with-orbits-dir=/usr/local/orbits
sudo make
sudo make install
cd ../
sudo mv ./GMTSAR/ /usr/local/GM

你可能感兴趣的:(安装手册,linux,ubuntu)