I was receiving the "version ‘GLIBC_2.14’ not found” error mentioned here: http://fenicsproject.org/download/installation_using_conda.html#importerror-lib64-libc-so-6-version-glibc-2-14-not-found
I followed the instructions but I was getting the following error:
lcosta@thunder01:~/miniconda2/envs> conda install "fenics=1.4.0" mkl --channel https://conda.binstar.org/juanlu001/channel/fenics:1.4.0:centos
Fetching package metadata: ......
Solving package specifications: ..........
Error: Could not find some dependencies for fenics 1.4|1.4.0*: dolfin ==1.4.0, eigen3
Looks like it's missing eigen3 so I found https://anaconda.org/juanlu001/eigen3 and successfully installed it. It does come up when I type "conda list".
Unfortunately I'm still getting the same dependency error when I run
conda install "fenics=1.4.0" mkl --channel https://conda.binstar.org/juanlu001/channel/fenics:1.4.0:centos
How can I resolve this dependency issue?