Installing Cardinal #27342
-
|
Hello, I have been trying to install ardinal with MOOSE's conda Environment, I am folllowing the instructions in the below link: However, I am ending up having the following outcome: ardinal is using HDF5 from /home/amer/miniforge Cardinal is compiled with the following MOOSE modules Linking libpng: -L/home/amer/miniforge/envs/moose/lib -lpng16 What should I do to make it work? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 15 replies
-
|
The error does seem to be related to altering Can you try the following, see if setting Exit your terminal (to remove what we asked you to do with the exporting of this variable), and then do: cd cardinal
export ENABLE_NEK=false
export HDF5_ROOT=$CONDA_PREFIX
make -j8basically everything except exporting LD_LIBRARY_PATH... |
Beta Was this translation helpful? Give feedback.
Hello @milljm and @aprilnovak, now I have Cardinal working well.
So what I did in the end is uninstalling and reinstalling my Ubuntu (WSL), and start from zero.
I installed MOOSE with Conda environment, based on the following link:
https://mooseframework.inl.gov/getting_started/installation/conda.html
Then I did follow what @milljm instructed me previously:
export ENABLE_NEK=false
export HDF5_ROOT=$CONDA_PREFIX
make -j 8
So no "export LD_LIBRARY_PATH=$CONDA_PREFIX/lib:$LD_LIBRARY_PATH"
And now I have a working Cardinal.
Thank you so much @milljm for your time and help.