Skip to content

Commit

Permalink
Update how to install (#37)
Browse files Browse the repository at this point in the history
* Update README.md

* the package is now on conda-forge

* add note about installing the openff-toolkit

* Update README.md

Co-authored-by: Iván Pulido <[email protected]>

---------

Co-authored-by: Iván Pulido <[email protected]>
  • Loading branch information
mikemhenry and ijpulidos authored Apr 30, 2024
1 parent 76b22c3 commit 093de91
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,28 @@ Standalone charge assignment from Espaloma framework. https://doi.org/10.1039/D2

## Installation

### conda-forge

We recomend installing `espaloma_charge` via conda-forge:

```bash
$ mamba create -n espaloma -c conda-forge espaloma_charge
```

If you plan on using [`openff-toolkit`](https://github.com/openforcefield/openff-toolkit), then install that as well when creating your `espaloma_charge` environment for optimal dependency solving:

```bash
$ mamba create -n espaloma -c conda-forge espaloma_charge openff-toolkit
```

### pypi

We also have `espaloma_charge` on pypi, but the `dgl` dependency must be installed first.

```bash
# First create a conda env with mamba, conda, or micromamba
$ mamba create -n espaloma -c conda-forge dgl==1.1.2 pip python
$ mamba activate espaloma
$ pip install espaloma_charge
```

Expand Down

0 comments on commit 093de91

Please sign in to comment.