Issue with compiling on WSL with old libmesh version #18407
-
|
Hi all, I'm trying to install MOOSE on a Windows laptop. I've followed the "Getting Started" guide on WSL and Conda MOOSE environment installation. To compile my code I have to use an old version of libmesh (2021.01.14 is the last one that works without any conflict to resolve). So I tried to roll back to that version but I have the following warning when doing so: Verifying transaction: - SafetyError: The package for moose-libmesh located at /home/louis/miniconda3/pkgs/moose-libmesh-2021.01.14-build_1 When I try to compile after that I get all sorts of errors with FunctionParser. Do you have any idea of what's wrong? I must add that I already tried to uninstall and reinstall the conda moose environment but I still run into the same issue. Another thing that might be related: the first time I tried to downgrade libmesh to 2021.01.14, I did not see the aforementioned error message and everything went fine during compiling (no error message about FunctionParser) until my computer crashed in the middle of the process... Thank you, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
|
I think every issue you are experiencing is due to our recent moose-libmesh dependency problem. The details are available here, as well as the solution: #18378 to that specific issue. I would ask that you simply "Try Again" by following the advice given in the aforementioned link. Basically, the steps will be: conda deactivate
conda clean --all # <-- adding this specifically in your case
conda env remove -n moose
conda create -n moose moose-libmesh moose-tools
conda activate mooseI added an additional step, as you do seem to possibly have a corrupted tarball package. I am not sure how that happened. But they fix is simple. Also note: If |
Beta Was this translation helpful? Give feedback.
I think every issue you are experiencing is due to our recent moose-libmesh dependency problem.
The details are available here, as well as the solution: #18378 to that specific issue.
I would ask that you simply "Try Again" by following the advice given in the aforementioned link. Basically, the steps will be:
conda deactivate conda clean --all # <-- adding this specifically in your case conda env remove -n moose conda create -n moose moose-libmesh moose-tools conda activate mooseI added an additional step, as you do seem to possibly have a corrupted tarball package. I am not sure how that happened. But they fix is simple.
Also note: If
conda installtakes forever to solve (or begi…