Problem Installing CONDA

Hello everyone, I’ve been trying to download fenics using conda on my linux computer. When I create a new virtual env, and paste the code: “conda install -c conda-forge fenics-dolfinx mpich pyvista” it just keeps loading forever and shuts my terminal, not installing anything.

Anyone knows how to fix this?

Do you mean conda environment? What commands did you run to create this environment and activate it before you ran

conda install -c conda-forge fenics-dolfinx mpich pyvista

Hello; I created a conda virtual environment with

conda create -n myenv 

Then I activated it using:

Conda activate myenv,

and then I run the code trying to install fenics but being unsuccessful

Hi Greg,
Do you get an error, or what does your terminal tell you? Have you checked if you have enough memory to install the packages (they are quite big). Also, in case solving the packages takes a long time, it is advised to install libmamba ( Getting started — conda-libmamba-solver) to speed that up.
Otherwise the reply @nav gave, should work.