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
{{ message }}
This repository was archived by the owner on Dec 10, 2022. It is now read-only.
Using Anaconda Cloud api site https://api.anaconda.org
36
+
Fetching package metadata: ....
37
+
Solving package specifications: .........
28
38
29
-
## Installation
30
-
*See [Download and Setup](tensorflow/g3doc/get_started/os_setup.md) for instructions on how to install our release binaries or how to build from source.*
39
+
Package plan for installation in environment /home/hholst/anaconda3/envs/ea-tensorflow:
31
40
32
-
People who are a little bit adventurous can also try our nightly binaries:
41
+
The following NEW packages will be INSTALLED:
33
42
34
-
* Linux CPU only: [Python 2](http://ci.tensorflow.org/view/Nightly/job/nightly-matrix-cpu/TF_BUILD_CONTAINER_TYPE=CPU,TF_BUILD_IS_OPT=OPT,TF_BUILD_IS_PIP=PIP,TF_BUILD_PYTHON_VERSION=PYTHON2,label=cpu-slave/lastSuccessfulBuild/artifact/pip_test/whl/tensorflow-0.8.0-cp27-none-linux_x86_64.whl) ([build history](http://ci.tensorflow.org/view/Nightly/job/nightly-matrix-cpu/TF_BUILD_CONTAINER_TYPE=CPU,TF_BUILD_IS_OPT=OPT,TF_BUILD_IS_PIP=PIP,TF_BUILD_PYTHON_VERSION=PYTHON2,label=cpu-slave/)) / [Python 3](http://ci.tensorflow.org/view/Nightly/job/nightly-matrix-cpu/TF_BUILD_CONTAINER_TYPE=CPU,TF_BUILD_IS_OPT=OPT,TF_BUILD_IS_PIP=PIP,TF_BUILD_PYTHON_VERSION=PYTHON3,label=cpu-slave/lastSuccessfulBuild/artifact/pip_test/whl/tensorflow-0.8.0-cp34-cp34m-linux_x86_64.whl) ([build history](http://ci.tensorflow.org/view/Nightly/job/nightly-matrix-cpu/TF_BUILD_CONTAINER_TYPE=CPU,TF_BUILD_IS_OPT=OPT,TF_BUILD_IS_PIP=PIP,TF_BUILD_PYTHON_VERSION=PYTHON3,label=cpu-slave/))
read -p "Do you wish to build TensorFlow with GPU support? [y/N] " INPUT
43
+
read -p "Do you wish to build TensorFlow with GPU support? [Y/n] " INPUT
44
44
case$INPUTin
45
45
[Yy]* ) echo"GPU support will be enabled for TensorFlow"; TF_NEED_CUDA=1;;
46
46
[Nn]* ) echo"No GPU support will be enabled for TensorFlow"; TF_NEED_CUDA=0;;
47
-
"" ) echo"No GPU support will be enabled for TensorFlow"; TF_NEED_CUDA=0;;
47
+
"" ) echo"GPU support will be enabled for TensorFlow"; TF_NEED_CUDA=1;;
48
48
* ) echo"Invalid selection: "$INPUT;;
49
49
esac
50
50
done
@@ -86,7 +86,7 @@ while true; do
86
86
87
87
fromuser=""
88
88
if [ -z"$CUDA_TOOLKIT_PATH" ];then
89
-
default_cuda_path=/usr/local/cuda
89
+
default_cuda_path=/usr
90
90
read -p "Please specify the location where CUDA $TF_CUDA_VERSION toolkit is installed. Refer to README.md for more details. [Default is $default_cuda_path]: " CUDA_TOOLKIT_PATH
91
91
fromuser="1"
92
92
if [ -z"$CUDA_TOOLKIT_PATH" ];then
@@ -98,10 +98,10 @@ while true; do
98
98
else
99
99
TF_CUDA_EXT=".$TF_CUDA_VERSION"
100
100
fi
101
-
if [ -e$CUDA_TOOLKIT_PATH/lib64/libcudart.so$TF_CUDA_EXT ];then
101
+
if [ -e$CUDA_TOOLKIT_PATH/lib/x86_64-linux-gnu/libcudart.so$TF_CUDA_EXT ];then
102
102
break
103
103
fi
104
-
echo"Invalid path to CUDA $TF_CUDA_VERSION toolkit. $CUDA_TOOLKIT_PATH/lib64/libcudart.so$TF_CUDA_EXT cannot be found"
104
+
echo"Invalid path to CUDA $TF_CUDA_VERSION toolkit. $CUDA_TOOLKIT_PATH/x86_64-linux-gnu/libcudart.so$TF_CUDA_EXT cannot be found"
105
105
if [ -z"$fromuser" ];then
106
106
exit 1
107
107
fi
@@ -119,7 +119,7 @@ while true; do
119
119
120
120
fromuser=""
121
121
if [ -z"$CUDNN_INSTALL_PATH" ];then
122
-
default_cudnn_path=${CUDA_TOOLKIT_PATH}
122
+
default_cudnn_path=/usr/local/cuda
123
123
read -p "Please specify the location where cuDNN $TF_CUDNN_VERSION library is installed. Refer to README.md for more details. [Default is $default_cudnn_path]: " CUDNN_INSTALL_PATH
0 commit comments