Commit 9c6612e1 authored by nd-02110114's avatar nd-02110114
Browse files

📝 update docs

parent 828c98f1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -66,7 +66,7 @@ DeepChem has a number of "soft" requirements. These are packages which are neede

### Install via conda (Recommendation)

RDKit is a soft requirement package, but many useful methods like molnet are dependent on it.
RDKit is a soft requirement package, but many useful methods like molnet depend on it.
If you use conda, we recommend installing RDKit with deepchem.

`deepchem>=2.4.0`
+7 −4
Original line number Diff line number Diff line
@@ -11,18 +11,21 @@ Google Colab. Check out one of the `DeepChem Tutorials`_ or this
Conda Installation
------------------
If you'd like to install DeepChem locally, we recommend using
:code:`conda`.  If you have :code:`conda` installed, you can install
DeepChem with GPU support with the one-liner
:code:`conda` and installing RDKit with deepchem. 
RDKit is a soft requirement package, but many useful methods like
molnet depend on it.

.. code-block:: bash

    conda install -y -c deepchem -c rdkit -c conda-forge -c omnia deepchem-gpu
    pip install tensorflow-gpu==1.14
    conda install -y -c rdkit -c conda-forge rdkit deepchem

For CPU only support instead run

.. code-block:: bash

    conda install -y -c deepchem -c rdkit -c conda-forge -c omnia deepchem
    pip install tensorflow==1.14
    conda install -y -c rdkit -c conda-forge rdkit deepchem

Then open your python and try running.

+1 −0
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@ logger = getLogger(__name__)
logger.addHandler(StreamHandler())
logger.setLevel(INFO)


default_channels = [
    "-c",
    "rdkit",