Unable to solve environment when installing moose #17094
-
|
Dear all, Does anyone know what the problem is? PS: My system memory is 32 Gb (base) sajjad@sajjad-PC:~$ conda create --name moose moose-libmesh moose-tools |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
|
I've seen lengthy solves among our continuous integration environment, but not on personal workstations. Can you try the following, and then attempt the install: conda clean --all --yesIf the above fails, perhaps one module at a time: conda create -n moose moose-libmesh
conda activate moose
conda install moose-toolsIt is moose-tools which contains the most 'dependencies' Conda must solve for. And sometimes I see handing it one-package-at-a-time speeds things up. Let us know if none of these options work! I have more 'ideas'. Conda clean doesn't get everything. |
Beta Was this translation helpful? Give feedback.
-
|
Many thanks for your response. it works, but I got another problem. when I make the application (make -j4) There is the below error: In file included from /home/sajjad/projects/moose/framework/build/unity_src/meshgenerators_Unity.C:25:0: I should mention that I updated conda and moose but I receive this error. would you please let me know how could I fix it? |
Beta Was this translation helpful? Give feedback.
I've seen lengthy solves among our continuous integration environment, but not on personal workstations. Can you try the following, and then attempt the install:
If the above fails, perhaps one module at a time:
It is moose-tools which contains the most 'dependencies' Conda must solve for. And sometimes I see handing it one-package-at-a-time speeds things up. Let us know if none of these options work! I have more 'ideas'. Conda clean doesn't get everything.