Skip to content

Commit

Permalink
Docs: update the default recommended requirements for conda (#3924)
Browse files Browse the repository at this point in the history
* Docs: update the default recommended requirements for conda

* update variant grammar
  • Loading branch information
caic99 committed Apr 8, 2024
1 parent 4356f9f commit ee0dc6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/quick_start/easy_install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand Down

0 comments on commit ee0dc6f

Please sign in to comment.