这是关于在我的系统中运行WRF模型的。我正在尝试运行文件plotgrids.ncl以确保在运行geogrid.exe之前域位于正确的位置。在我的终端(ubuntu)中运行以下命令
ncl util/plotgrids.ncl
给我以下错误:
ncl: /lib/x86_64-linux-gnu/libssl.so.10: version 'libssl.so.10' not found (required by ncl)
ncl: /lib/x86_64-linux-gnu/libcrypto.so.10: version 'libcrypto.so.10' not found (required by ncl)
答案 0 :(得分:0)
在Ubuntu 10.10的一个NCL 6.4.0安装解决方案是 搜索compat-openssl10包,如 COMPAT-openssl10-1.0.2j-9.fc26.x86_64.rpm 通过执行以下步骤将其转换为.deb包:
apt-get install libdpkg-perl
alien compat-openssl10-1.0.2j-9.fc26.x86_64.rpm
dpkg -i compat-openssl10_1.0.2j-10_amd64.deb
find / -name libssl.so.*
现在将在/ usr / lib / libssl.so.10
中显示NCL仍然会抱怨GLIBC版本 在这种情况下,通过编辑解决了
vi /etc/apt/sources.list
:%s/maverick/wily/g
apt-get update
apt-get install libc6
这仍然显示为2.15
ldd --version
然而现在测试与
一起使用ng4ex xy01n -clean
答案 1 :(得分:0)
对于Ubuntu 16,请查看NCL论坛提供的帮助 mailman.ucar.edu/pipermail/ncl-install/2017-November/thread.html 在这里恢复:
http://conda.pydata.org/miniconda.html 使用Python 3.6 Linux 64位(bash安装程序)
cd /home/user/Downloads/
chmod +x Miniconda2-latest-Linux-x86_64.sh
./Miniconda2-latest-Linux-x86_64.sh
conda -V
conda 4.3.30
http://ncl.ucar.edu/Download/conda.shtml
conda create -n ncl_stable -c conda-forge ncl=6.4.0 gsl
root@hostname:~# source activate ncl_stable
(ncl_stable) root@hostname:~# ncl -V
6.4.0
ng4ex xy05n -clean -W png
它有效!
外围康达(ncl_stable)
ng4ex
目前尚未安装“ng4ex”程序。您可以通过以下方式安装它:
sudo su
vi /etc/apt/sources.list
在最后添加
deb http://http.us.debian.org/debian/ testing non-free contrib main
退出编辑器
apt-get update
apt install libncarg-bin