Commit 32e600e8 authored by Nate Stanley's avatar Nate Stanley Committed by GitHub
Browse files

Correct instructions for installing using conda env

Just installed into a conda env and the commands as written would not achieve that correctly. These changes should fix that.
parent a052eb5e
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
```