tensorflow - How bazel creates the third_party/py/numpy/numpy_include link? -
bazel version build label: 0.3.1-homebrew
os: mac 10.12
during build of tensorflow end brokne link third_party/py/numpy/numpy_include pointing non-existed folder (i had removed numpy):
> ls -l third_party/py/numpy/numpy_include third_party/py/numpy/numpy_include -> /library/python/2.7/site-packages/numpy-1.11.2-py2.7-macosx-10.12-intel.egg/numpy/core/include
so had create correct link manually:
ln -s /usr/local/lib/python2.7/site-packages/numpy/core/include third_party/py/numpy/numpy_include
now build working again. however, want understand how bazel creates link , correct way update after new version of dependencies installed.
Comments
Post a Comment