我使用 HypooDD 重新定位地震,但是当我在终端上输入时:
hypoDD hypoDD.inp
出现此错误:
STOP >>> Increase MAXEVE in hypoDD.inc. statement executed
我更改了 hypoDD.inc 文件中的 MAXEVE,但错误仍然出现。我该如何解决这个问题?
我使用 HypooDD 重新定位地震,但是当我在终端上输入时:
hypoDD hypoDD.inp
出现此错误:
STOP >>> Increase MAXEVE in hypoDD.inc. statement executed
我更改了 hypoDD.inc 文件中的 MAXEVE,但错误仍然出现。我该如何解决这个问题?
我使用以下命令在 Ubuntu 19.04 上安装 g77 编译器:
sudo gedit /etc/apt/sources.list
然后在该文件的底部添加:
deb [trusted=yes] old-releases.ubuntu.com/ubuntu hardy universe
deb-src [trusted=yes] old-releases.ubuntu.com/ubuntu hardy universe
deb [trusted=yes] old-releases.ubuntu.com/ubuntu hardy-updates universe
deb-src [trusted=yes] old-releases.ubuntu.com/ubuntu hardy-updates universe
然后:
sudo apt update
sudo apt install g77
我也试过:
sudo apt update
sudo apt install fort77 gfortran
使用“make”命令安装HypoDD双差震源定位程序时,出现以下行:
/usr/bin/ld: cannot find crt1.o: No such file or directory
/usr/bin/ld: cannot find crti.o: No such file or directory
使用此命令时:
find /usr/ -name crti*
我发现这些文件存在于以下路径中:
/usr/libx32/crti.o
/usr/mipsel-linux-gnu/lib/crti.o
/usr/lib32/crti.o
/usr/lib/x86_64-linux-gnu/crti.o
如何解决此问题以运行“make”命令?
我刚刚下载了 Ubuntu 19.04。我想安装一个需要 g77 编译器才能运行的程序。我按照在 Ubuntu >=14.04 上安装 G77 中解释的说明进行操作,但是在输入命令时
sudo apt install g77
出现错误:
E: Package 'g77' has no installation candidate
我该如何解决这个问题?