diff --git a/docs/quick_start/easy_install.md b/docs/quick_start/easy_install.md index de1f04989fd..5e449197b3c 100644 --- a/docs/quick_start/easy_install.md +++ b/docs/quick_start/easy_install.md @@ -206,7 +206,7 @@ A pre-built ABACUS binary with all requirements is available at [conda-forge](ht ```bash # Install # We recommend installing ABACUS in a new environment to avoid potential conflicts: -conda create -n abacus_env abacus -c conda-forge +conda create -n abacus_env abacus "libblas=*=*mkl" mpich -c conda-forge # Run conda activate abacus_env @@ -216,7 +216,7 @@ OMP_NUM_THREADS=1 mpirun -n 4 abacus conda update -n abacus_env abacus -c conda-forge ``` -> If OpenBLAS gives warning about OpenMP threads, please install conda package `openblas=*=openmp*` or `blas=*=mkl`. See [switching BLAS implementation in conda](https://conda-forge.org/docs/maintainer/knowledge_base.html#switching-blas-implementation). +> If OpenBLAS gives warning about OpenMP threads, please install conda package `"openblas=*=openmp*"` or `"libblas=*=*mkl"`. See [switching BLAS implementation in conda](https://conda-forge.org/docs/maintainer/knowledge_base.html#switching-blas-implementation). > ABACUS supports `OpenMPI` and `MPICH` variant. Install `mpich` or `openmpi` package to switch MPI library if required.