there are many third party modules used in tensorflow, many of them are cloned to the work directory not as a part of the do_fetch task.
according to bazel documentation one can simply fetch all third party requirements by simply running the command bazel sync.
I strongly suggest that tensorflow's recipe will add the command bazel sync to the do_fetch task via do_fetch_append.
there are many third party modules used in tensorflow, many of them are cloned to the work directory not as a part of the
do_fetch
task. according to bazel documentation one can simply fetch all third party requirements by simply running the commandbazel sync
. I strongly suggest that tensorflow's recipe will add the commandbazel sync
to thedo_fetch
task viado_fetch_append
.