@@ -69,7 +69,7 @@ Note: TensorFlow is tested against the *Visual Studio 2019*.
69
69
See the Windows [ GPU support] ( ./gpu.md ) guide to install the drivers and
70
70
additional software required to run TensorFlow on a GPU.
71
71
72
- Note: This is only for 2.10 or earlier. 2.11 or later versions does support GPU on Windows
72
+ Note: This is only for 2.10 or earlier versions, 2.11 or later versions does not support GPU on native- Windows
73
73
74
74
### Download the TensorFlow source code
75
75
@@ -140,11 +140,9 @@ differ):
140
140
python ./configure.py
141
141
You have bazel 5.3.0 installed.
142
142
Please specify the location of python. [Default is C:\Python310\python.exe]:
143
-
144
-
145
143
Found possible Python library paths:
146
- D:\user\mraunak\venv310 \lib\site-packages
147
- Please input the desired Python library path to use. Default is [D:\user\mraunak\venv310 \lib\site-packages]
144
+ C:\Python310 \lib\site-packages
145
+ Please input the desired Python library path to use. Default is [C:\Python310 \lib\site-packages]
148
146
149
147
Do you wish to build TensorFlow with ROCm support? [y/N]:
150
148
No ROCm support will be enabled for TensorFlow.
@@ -173,7 +171,7 @@ Preconfigured Bazel build configs to DISABLE default on features:
173
171
--config=nogcp # Disable GCP support.
174
172
--config=nonccl # Disable NVIDIA NCCL support.
175
173
176
- Configuration finished
174
+ # Configuration finished
177
175
</pre >
178
176
</section >
179
177
@@ -220,7 +218,7 @@ To make the TensorFlow package builder with GPU support:
220
218
bazel build --config=opt --config=cuda --define=no_tensorflow_py_deps=true //tensorflow/tools/pip_package:build_pip_package
221
219
</pre >
222
220
223
- Commands to clean the bazel cache to resolve errors due to invalid or outdated cached data, bazel clean with --expunge flag removes files permanently [ tensorflow : issue #13135 ] ( https://github.com/tensorflow/tensorflow/issues/13135 )
221
+ Commands to clean the bazel cache to resolve errors due to invalid or outdated cached data, bazel clean with --expunge flag removes files permanently
224
222
225
223
<pre class =" devsite-terminal tfo-terminal-windows devsite-click-to-copy " >
226
224
bazel clean
@@ -267,7 +265,7 @@ The filename of the generated `.whl` file depends on the TensorFlow version and
267
265
your platform. Use ` pip3 install ` to install the package, for example:
268
266
269
267
<pre class =" devsite-terminal tfo-terminal-windows prettyprint lang-bsh " >
270
- pip3 install C:/tmp/tensorflow_pkg/tensorflow-<var >version</var >-cp36-cp36m -win_amd64.whl
268
+ pip3 install C:/tmp/tensorflow_pkg/tensorflow-<var >version</var >-cp310-cp310 -win_amd64.whl
271
269
</pre >
272
270
273
271
Success: TensorFlow is now installed.
@@ -294,12 +292,12 @@ considered a Unix absolute path since it starts with a slash.)
294
292
295
293
Add the Bazel and Python installation directories to your ` $PATH ` environmental
296
294
variable. If Bazel is installed to ` C:\tools\bazel.exe ` , and Python to
297
- ` C:\Python36 \python.exe ` , set your ` PATH ` with:
295
+ ` C:\Python310 \python.exe ` , set your ` PATH ` with:
298
296
299
297
<pre class =" prettyprint lang-bsh " >
300
298
# Use Unix-style with ':' as separator
301
299
<code class =" devsite-terminal " >export PATH="/c/tools:$PATH"</code >
302
- <code class =" devsite-terminal " >export PATH="/c/Python36 :$PATH"</code >
300
+ <code class =" devsite-terminal " >export PATH="/c/Python310 :$PATH"</code >
303
301
</pre >
304
302
305
303
For GPU support, add the CUDA and cuDNN bin directories to your ` $PATH ` :
0 commit comments