这是关于在我的系统中运行WRF模型的参考。在运行geogrid.exe之前,我正在尝试运行文件plotgrids.ncl,以确保域位于正确的位置。在我的终端(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)
发布于 2017-11-14 18:26:48
在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发布于 2017-11-15 21:55:01
对于Ubuntu16,请查看NCL论坛在mailman.ucar.edu/pipermail/ncl-install/2017-November/thread.html提供的帮助,在这里恢复:
http://conda.pydata.org/miniconda.html使用Python3.6Linux64位(bash安装程序)
cd /home/user/Downloads/
chmod +x Miniconda2-latest-Linux-x86_64.sh
./Miniconda2-latest-Linux-x86_64.sh
conda -Vconda 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 -V6.4.0
ng4ex xy05n -clean -W png它起作用了!
外部conda (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-binhttps://stackoverflow.com/questions/43985720
复制相似问题