我在url(https://www.tensorflow.org/how_tos/image_retraining/)上关注TensorFlow的初始模型构建教程。当我运行命令bazel build tensorflow/examples/image_retraining:retrain
时,我收到错误:
仅在工作区内支持“build”命令。
我使用普通pip install
命令设置了tensorflow,并且没有安装Docker或Anaconda来运行TensorFlow。 Bazel是通过酿造而建立的,我在Mac OSX v10.11.x上。
答案 0 :(得分:5)
当我这样做时,我git将目录(git clone https://github.com/tensorflow/tensorflow/)克隆到$ HOME / tensorflow,然后从' tensorflow'的根目录克隆。目录(它所指的工作空间),我运行./configure然后执行" bazel build tensorflow / examples / image_retraining:retrain"。然后在bazel-bin目录中生成输出。
答案 1 :(得分:2)
首先运行touch WORKSPACE
,然后运行bazel build
命令。
答案 2 :(得分:0)
听起来很傻,但是我被困了30秒钟才意识到自己没有正确地调用/ path / to / cmd
值得再次检查...