Skip to content

Commit d192bed

Browse files
committed
Merge pull request #2 from PythonWorkshop/giri_tf_v1
Adding some notes to README.
2 parents 4696391 + 67f4d17 commit d192bed

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ In this tutorial the steps needed to clean a dataset and prepare it for modeling
55
This tutorial includes several machine learning terms. To get a good mathematical understanding of these concepts, please read the Math Primer.
66

77
## Installation Notes
8-
There are a few packages you will need in order to run this tutorial. We recommend installing the miniconda environment, which makes the installation process quite easy. Please see the README file for this mornings session for instructions on how to install miniconda.
8+
There are a few packages you will need in order to run this tutorial. We recommend installing the miniconda environment, which makes the installation process quite easy. Please see the [README](https://github.com/PythonWorkshop/intro-to-sklearn) file for this mornings session for instructions on how to install miniconda.
99

1010
In order to run this tutorial, you will need the following Python packages:
1111
* numpy
@@ -15,12 +15,20 @@ In order to run this tutorial, you will need the following Python packages:
1515
* skflow
1616
* tensorflow
1717

18+
(skflow is not part of tensorflow ??)
19+
1820
The first five packages can be installed with the following command:
1921

2022
```
2123
pip install numpy pandas seaborn sklearn skflow
2224
```
2325

26+
Alternatively if you are using conda you can do:
27+
28+
```
29+
conda install numpy pandas seaborn scikit-learn
30+
```
31+
2432
For TensorFlow, the installation depends on your environment. Below are installation instructions. For detailed instuctions, please see the TensorFlow [README](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/g3doc/get_started/os_setup.md) file.
2533

2634
### NOTE:

0 commit comments

Comments
 (0)