Skip to content

Commit

Permalink
Adding conda install rdkit to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
swansonk14 committed Jul 22, 2020
1 parent dc53381 commit 81d2150
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ Then proceed to either option below to complete the installation. Note that on m

1. `conda env create -n chemprop python=3.7`
2. `conda activate chemprop`
3. `pip install chemprop`
3. `conda install -c conda-forge rdkit`
4. `pip install chemprop`

### Option 2: Installing from source

Expand Down
2 changes: 1 addition & 1 deletion chemprop/models/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def create_encoder(self, args: TrainArgs) -> None:
"""
self.encoder = MPN(args)

def create_ffn(self, args: TrainArgs):
def create_ffn(self, args: TrainArgs) -> None:
"""
Creates the feed-forward layers for the model.
Expand Down
3 changes: 2 additions & 1 deletion docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ Option 1: Installing from PyPi

1. :code:`conda env create -n chemprop python=3.7`
2. :code:`conda activate chemprop`
3. :code:`pip install chemprop`
3. :code:`conda install -c conda-forge rdkit`
4. :code:`pip install chemprop`

Option 2: Installing from source
--------------------------------
Expand Down

0 comments on commit 81d2150

Please sign in to comment.