We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6aa785e commit f3ff0d4Copy full SHA for f3ff0d4
docs/source/install.rst
@@ -350,6 +350,13 @@ This should be done as follows:
350
# From TensorFlow/models/research/
351
protoc object_detection/protos/*.proto --python_out=.
352
353
+If you are on Windows and using version 3.5 or later, the wildcard will not work and you have to run this in the command prompt:
354
+
355
+.. code-block:: python
356
357
+ # From TensorFlow/models/research/
358
+ for /f %i in ('dir /b object_detection\protos\*.proto') do protoc object_detection\protos\%i --python_out=.
359
360
.. [#] NOTE: You MUST open a new `Anaconda/Command Prompt` for the changes in the environment variables to take effect.
361
362
.. _test_tf_models:
0 commit comments