You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+25-24Lines changed: 25 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ If you want to see the exact versions of the source-code that were used in the Y
56
56
then you can [browse the history](https://github.com/Hvass-Labs/TensorFlow-Tutorials/commits/master)
57
57
of commits to the GitHub repository.
58
58
59
-
## Installation
59
+
## Downloading
60
60
61
61
Some of the Python Notebooks use source-code located in different files to allow for easy re-use
62
62
across multiple tutorials. It is therefore recommended that you download the whole repository
@@ -79,16 +79,22 @@ This also makes it easy to update the tutorials, simply by executing this comman
79
79
You can also [download](https://github.com/Hvass-Labs/TensorFlow-Tutorials/archive/master.zip)
80
80
the contents of the GitHub repository as a Zip-file and extract it manually.
81
81
82
-
## Requirements
83
-
84
-
These tutorials were developed on Linux using **Python 3.5** (the [Anaconda](https://www.continuum.io/downloads) distribution) and [PyCharm](https://www.jetbrains.com/pycharm/).
85
-
86
-
There are reports that Python 2.7 gives error messages with these tutorials. Please make sure you are using **Python 3.5** or later!
82
+
## Installation
87
83
88
84
There are different ways of installing and running TensorFlow. This section describes how I did it
89
85
for these tutorials. You may want to do it differently and you can search the internet for instructions.
90
86
91
-
### Example Setup
87
+
If you are new to using Python and Linux, etc. then this may be challenging
88
+
to get working and you may need to do internet searches for error-messages, etc.
89
+
It will get easier with practice.
90
+
91
+
### Python Version 3.5 or Later
92
+
93
+
These tutorials were developed on Linux using **Python 3.5 / 3.6** (the [Anaconda](https://www.continuum.io/downloads) distribution) and [PyCharm](https://www.jetbrains.com/pycharm/).
94
+
95
+
There are reports that Python 2.7 gives error messages with these tutorials. Please make sure you are using **Python 3.5** or later!
96
+
97
+
### Environment
92
98
93
99
After installing [Anaconda](https://www.continuum.io/downloads), you should create a [conda environment](http://conda.pydata.org/docs/using/envs.html)
94
100
so you do not destroy your main installation in case you make a mistake somewhere:
@@ -99,24 +105,23 @@ Now you can switch to the new environment by running the following (on Linux):
99
105
100
106
source activate tf
101
107
102
-
Some of these tutorials use [scikit-learn](http://scikit-learn.org/stable/install.html)
103
-
which can be installed in your new conda environment as follows. This also installs
104
-
NumPy and other dependencies:
105
-
106
-
conda install scikit-learn
108
+
### Required Packages
107
109
108
-
You may also need to install other dependencies, such as:
110
+
The tutorials require several Python packages to be installed. The packages are listed in
0 commit comments