-
Notifications
You must be signed in to change notification settings - Fork 65
Description
Hi,
I tried to install uvcdat on a server where I'm usually postprocess CMIP5 data.
One problem is that the conda version installed on the server is old... so I can't install uvcdat (MEMORY ERROR).
So I tried to install using miniconda:
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh
And use it to install uvcdat: miniconda/bin/conda create -n myuvcdat uvcdat -c conda-forge -c uvcdat
It works. But I can't use uvcdat!
Python 2.7.14 | packaged by conda-forge | (default, Nov 4 2017, 10:15:28)
[GCC 4.8.2 20140120 (Red Hat 4.8.2-15)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
import vcs
Traceback (most recent call last):
File "", line 1, in
File "/home/yplanton/miniconda/envs/myuvcdat/lib/python2.7/site-packages/vcs/init.py", line 92, in
from utils import * # noqa
File "/home/yplanton/miniconda/envs/myuvcdat/lib/python2.7/site-packages/vcs/utils.py", line 16, in
import cdtime
ImportError: libnetcdf.so.11: cannot open shared object file: No such file or directory
Is this problem known? Someone knows how to solve it?
Thanks.
Yann