Solving environment: failed during installation #27665
-
Check these boxes if you have followed the posting rules.
Issue or question about MOOSEI want to install MOOSE on my Mac (M2) for the first time. I faced this error. How can I solve this problem?
LibMambaUnsatisfiableError: Encountered problems while solving:
Could not solve for environment specs Diagnostics for MOOSE installation issues[Optional] Output of the diagnostics scripts. To run the script: cd ~/projects/moose/scripts; ./diagnostics.sh |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 11 replies
-
Thanks for your reply. It worked. When I wanted to run an example, I faced:
How can I solve it? |
Beta Was this translation helpful? Give feedback.
-
I can run examples from MOOSE directory but when I try to run my code it says: How can I solve this problem? *** ERROR *** If you are trying to find this object in a dynamically loaded library, make sure that Stack frames: 20 |
Beta Was this translation helpful? Give feedback.
-
Hello
You need to recompile with the phase field module I think
You add this in the makefile
|
Beta Was this translation helpful? Give feedback.
This may be due to using a version of Conda that which does not by default support the
conda-forge
channel (Anaconda's 'Miniconda' implementation for example).Try running the following
conda
commands to add the appropriate channels, and the necessary attributes to make use of these channels:conda config --add channels conda-forge conda config --add channels https://conda.software.inl.gov/public # you'll probably get a warning about moving this to the top. conda config --set channel_priority strict
And then try to install
moose-dev
once more.