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
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -140,6 +140,19 @@ This repository aims at getting you started with [docker](https://www.docker.com
140
140
141
141
which jupyter
142
142
```
143
+
144
+
**4.** To update **pip** type ```pip install --upgrade pip``` in the terminal, since we would be using it to install other libraries it is good to have the latest updates fetched.
143
145
144
146
### Installing deep learning frameworks
145
147
- In this section we will be installing the most popular deep learning framework **TensorFlow** and **keras**. Note that while installing keras **Theano** another deep learning library will also be installed as its a dependency for keras. With these being installed you should be able to build most of your deep neural nets. Also note that this installation is for **CPU** version of **TensorFlow** only.
148
+
149
+
**1.** Before we install TensorFlow, as the official documentation suggests we will create a seperate conda environment. To do so type ```conda create -n tensorflow```. You will be asked to confirm for the environment location where this new environment will be created say **yes** to proceed. This might take few seconds.
150
+
151
+
**2.** Now to enter the environment we just created type ```source activate tensorflow``` in the terminal. We will now install tensorflow and keras in this environment.
152
+
153
+
**3.** To install tensorflow type the following command in the terminal:
0 commit comments