Commit 24e4346c authored by Bharath Ramsundar's avatar Bharath Ramsundar Committed by GitHub
Browse files

Merge pull request #575 from dr-nate/patch-1

Correct instructions for installing using conda env
parents a052eb5e 32e600e8
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -50,9 +50,10 @@ You can install deepchem in a new conda environment using the conda commands in

```bash
git clone https://github.com/deepchem/deepchem.git      # Clone deepchem source code from GitHub
cd deepchem
bash scripts/install_deepchem_conda.sh deepchem
source activate deepchem
pip install tensorflow-gpu==1.0.1                       # If you want GPU support
cd deepchem
python setup.py install                                 # Manual install
nosetests -v deepchem --nologcapture                    # Run tests
```