Skip to content

Commit 8cbc3dd

Browse files
author
Vijay Vasudevan
committed
Merge pull request tensorflow#1217 from jendap/update-pip-links-for-0.7.1
upgrade pip links for 0.7.1
2 parents 028d0b4 + 0447a32 commit 8cbc3dd

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

tensorflow/g3doc/get_started/os_setup.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -53,28 +53,28 @@ Install TensorFlow:
5353

5454
```bash
5555
# Ubuntu/Linux 64-bit, CPU only:
56-
$ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-py2-none-linux_x86_64.whl
56+
$ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-cp27-none-linux_x86_64.whl
5757

5858
# Ubuntu/Linux 64-bit, GPU enabled:
59-
$ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.7.1-py2-none-linux_x86_64.whl
59+
$ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.7.1-cp27-none-linux_x86_64.whl
6060

6161
# Mac OS X, CPU only:
6262
$ sudo easy_install --upgrade six
63-
$ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.7.1-py2-none-any.whl
63+
$ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.7.1-cp27-none-any.whl
6464
```
6565

6666
For python3:
6767

6868
```bash
6969
# Ubuntu/Linux 64-bit, CPU only:
70-
$ sudo pip3 install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-py3-none-linux_x86_64.whl
70+
$ sudo pip3 install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-cp34-none-linux_x86_64.whl
7171

7272
# Ubuntu/Linux 64-bit, GPU enabled:
73-
$ sudo pip3 install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.7.1-py3-none-linux_x86_64.whl
73+
$ sudo pip3 install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.7.1-cp34-none-linux_x86_64.whl
7474

7575
# Mac OS X, CPU only:
7676
$ sudo easy_install --upgrade six
77-
$ sudo pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.7.1-py3-none-any.whl
77+
$ sudo pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.7.1-cp35-none-any.whl
7878
```
7979

8080

@@ -121,13 +121,13 @@ $ source ~/tensorflow/bin/activate.csh # If using csh
121121
(tensorflow)$ # Your prompt should change
122122

123123
# Ubuntu/Linux 64-bit, CPU only:
124-
(tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-py2-none-linux_x86_64.whl
124+
(tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-cp27-none-linux_x86_64.whl
125125

126126
# Ubuntu/Linux 64-bit, GPU enabled:
127-
(tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.7.1-py2-none-linux_x86_64.whl
127+
(tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.7.1-cp27-none-linux_x86_64.whl
128128

129129
# Mac OS X, CPU only:
130-
(tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.7.1-py2-none-any.whl
130+
(tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.7.1-cp27-none-any.whl
131131
```
132132

133133
and again for python3:
@@ -138,13 +138,13 @@ $ source ~/tensorflow/bin/activate.csh # If using csh
138138
(tensorflow)$ # Your prompt should change
139139

140140
# Ubuntu/Linux 64-bit, CPU only:
141-
(tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-py3-none-linux_x86_64.whl
141+
(tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-cp34-none-linux_x86_64.whl
142142

143143
# Ubuntu/Linux 64-bit, GPU enabled:
144-
(tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.7.1-py3-none-linux_x86_64.whl
144+
(tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.7.1-cp34-none-linux_x86_64.whl
145145

146146
# Mac OS X, CPU only:
147-
(tensorflow)$ pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.7.1-py3-none-any.whl
147+
(tensorflow)$ pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.7.1-cp35-none-any.whl
148148
```
149149

150150
With the Virtualenv environment activated, you can now

tensorflow/tools/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RUN pip --no-cache-dir install \
3030
# Install TensorFlow CPU version.
3131
ENV TENSORFLOW_VERSION 0.7.1
3232
RUN pip --no-cache-dir install \
33-
http://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-${TENSORFLOW_VERSION}-py2-none-linux_x86_64.whl
33+
http://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-${TENSORFLOW_VERSION}-cp27-none-linux_x86_64.whl
3434

3535
# Set up our notebook config.
3636
COPY jupyter_notebook_config.py /root/.jupyter/

tensorflow/tools/docker/Dockerfile.gpu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RUN pip --no-cache-dir install \
3030
# Install TensorFlow GPU version.
3131
ENV TENSORFLOW_VERSION 0.7.1
3232
RUN pip --no-cache-dir install \
33-
http://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-${TENSORFLOW_VERSION}-py2-none-linux_x86_64.whl
33+
http://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-${TENSORFLOW_VERSION}-cp27-none-linux_x86_64.whl
3434

3535
# Set up our notebook config.
3636
COPY jupyter_notebook_config.py /root/.jupyter/

0 commit comments

Comments
 (0)