diff --git a/README.md b/README.md index 500c0c3..66325f4 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,37 @@ proteins, in both schematic and detailed representations. The documentation is at [http://pekrau.github.io/MolScript/](http://pekrau.github.io/MolScript/). +Installation +------------ + +### Using Conda + +MolScript is available on conda-forge and can be easily installed using: + +```bash +conda install -c conda-forge molscript +``` + +### Using Mamba + +[Mamba](https://mamba.readthedocs.io/) is a fast, drop-in replacement for conda: + +```bash +mamba install -c conda-forge molscript +``` + +### Using Pixi + +[Pixi](https://pixi.sh/) is a modern, fast package manager that uses conda packages. To install MolScript globally: + +```bash +pixi global install molscript +``` + +### From Source + +For building from source, please see the [installation documentation](http://pekrau.github.io/MolScript/installation.html). + Background ---------- diff --git a/docs/installation.html b/docs/installation.html index 0e21062..468a304 100644 --- a/docs/installation.html +++ b/docs/installation.html @@ -8,6 +8,84 @@
+conda install -c conda-forge molscript
+
+
+Or, if you have conda-forge configured as a priority channel:
+
+
+conda install molscript
+
+
+To configure conda-forge as a priority channel:
+
+
+conda config --add channels conda-forge
+conda config --set channel_priority strict
+
+
+
+mamba install -c conda-forge molscript
+
+
+Or, if you have conda-forge configured as a priority channel:
+
+
+mamba install molscript
+
+
+
+pixi global install molscript
+
+
+Or, specifying the conda-forge channel explicitly:
+
+
+pixi global install -c conda-forge molscript
+
+
++
@@ -33,17 +111,7 @@