From c03110cdf51aa431548f9448e443f335fb66588a Mon Sep 17 00:00:00 2001 From: "Andrew S. Rosen" Date: Mon, 20 May 2024 00:52:51 -0400 Subject: [PATCH] Update install.md --- docs/install/install.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/install/install.md b/docs/install/install.md index 19421ac75f..356a00ea03 100644 --- a/docs/install/install.md +++ b/docs/install/install.md @@ -18,19 +18,19 @@ In your newly activated conda environment, run the following commands to install For the latest PyPI release: ```bash -pip install uv # (1)! -uv pip install --force-reinstall --no-deps "ase @ https://gitlab.com/ase/ase/-/archive/master/ase-master.zip" +# Install development version of ASE +pip install --force-reinstall --no-deps "ase @ https://gitlab.com/ase/ase/-/archive/master/ase-master.zip" -uv pip install quacc +# Install quacc +pip install quacc ``` -1. It is optional to use `uv`, but it greatly speeds up the installation process. - For the development version: ```bash -pip install uv -uv pip install --force-reinstall --no-deps "ase @ https://gitlab.com/ase/ase/-/archive/master/ase-master.zip" +# Install development version of ASE +pip install --force-reinstall --no-deps "ase @ https://gitlab.com/ase/ase/-/archive/master/ase-master.zip" -uv pip install git+https://github.com/quantum-accelerators/quacc.git +# Install development version of quacc +pip install git+https://github.com/quantum-accelerators/quacc.git ```