Skip to content

Commit 4852585

Browse files
committed
Clarified installation instructions etc.
1 parent 24cacdc commit 4852585

File tree

1 file changed

+28
-20
lines changed

1 file changed

+28
-20
lines changed

README.md

Lines changed: 28 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -133,15 +133,31 @@ instead use the Keras API for creating Neural Networks in TensorFlow.
133133

134134
These tutorials have been translated to the following languages:
135135

136-
* [Chinese](https://github.com/thrillerist/TensorFlow-Tutorials)
136+
* [Chinese](https://github.com/Hvass-Labs/TensorFlow-Tutorials-Chinese)
137+
138+
### New Translations
137139

138140
You can help by translating the remaining tutorials or reviewing the ones that have already been translated. You can also help by translating to other languages.
139141

142+
It is a very big job to translate all the tutorials, so you should just start with Tutorials #01, #02 and #03-C which are the most important for beginners.
143+
144+
### New Videos
145+
146+
You are also very welcome to record your own YouTube videos in other languages. It is strongly recommended that you get a decent microphone because good sound quality is very important. I used `vokoscreen` for recording the videos and the free [DaVinci Resolve](https://www.blackmagicdesign.com/products/davinciresolve/) for editing the videos.
147+
140148
## Forks
141149

142150
See the [selected list of forks](forks.md) for community modifications to these tutorials.
143151

144-
## Downloading
152+
## Installation
153+
154+
There are different ways of installing and running TensorFlow. This section describes how I did it
155+
for these tutorials. You may want to do it differently and you can search the internet for instructions.
156+
157+
If you are new to using Python and Linux then this may be challenging
158+
to get working and you may need to do internet searches for error-messages, etc.
159+
It will get easier with practice. You can also run the tutorials without installing
160+
anything by using Google Colab, see further below.
145161

146162
Some of the Python Notebooks use source-code located in different files to allow for easy re-use
147163
across multiple tutorials. It is therefore recommended that you download the whole repository
@@ -159,30 +175,16 @@ This also makes it easy to update the tutorials, simply by executing this comman
159175

160176
git pull
161177

162-
### Zip-File
178+
### Download Zip-File
163179

164180
You can also [download](https://github.com/Hvass-Labs/TensorFlow-Tutorials/archive/master.zip)
165181
the contents of the GitHub repository as a Zip-file and extract it manually.
166182

167-
## Installation
168-
169-
There are different ways of installing and running TensorFlow. This section describes how I did it
170-
for these tutorials. You may want to do it differently and you can search the internet for instructions.
171-
172-
If you are new to using Python and Linux, etc. then this may be challenging
173-
to get working and you may need to do internet searches for error-messages, etc.
174-
It will get easier with practice.
175-
176-
### Python Version 3.5 or Later
177-
178-
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/).
179-
180-
There are reports that Python 2.7 gives error messages with these tutorials. Please make sure you are using **Python 3.5** or later!
181-
182183
### Environment
183184

184-
After installing [Anaconda](https://www.continuum.io/downloads), you should create a
185-
[conda environment](http://conda.pydata.org/docs/using/envs.html)
185+
I use [Anaconda](https://www.continuum.io/downloads) because it comes with many Python
186+
packages already installed and it is easy to work with. After installing Anaconda,
187+
you should create a [conda environment](http://conda.pydata.org/docs/using/envs.html)
186188
so you do not destroy your main installation in case you make a mistake somewhere:
187189

188190
conda create --name tf python=3
@@ -213,6 +215,12 @@ in a terminal:
213215
Note that the GPU-version of TensorFlow also requires the installation of various
214216
NVIDIA drivers, which is not described here.
215217

218+
### Python Version 3.5 or Later
219+
220+
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/).
221+
222+
There are reports that Python 2.7 gives error messages with these tutorials. Please make sure you are using **Python 3.5** or later!
223+
216224
## How To Run
217225

218226
If you have followed the above installation instructions, you should

0 commit comments

Comments
 (0)