bazel version 6.5.0 install issue
I am working on pointnet project in python. The project uses tensorflow and tensorrt. In the integration of tensorflow with tensorrt, bazel 6.5.0 needs to be installed for that installed bazelisk. but got ERROR: The project you're trying to build requires Bazel 6.5.0 (specified in /....../pointnet/tensorflow/.bazelversion), but it wasn't found in /usr/bin. Initially installed bazelisk and was able to install bazel 6.5.0 but in usr/local/bin. deleted that and when tried again to install in /usr/bin got error. when executed bazelisk install --version 6.5.0 WARNING: Invoking Bazel in batch mode since it is not invoked from within a workspace (below a directory having a WORKSPACE file). OpenJDK 64-Bit Server VM warning: Options -Xverify:none and -noverify were deprecated in JDK 13 and will likely be removed in a future release. Command 'install' not found. Try 'bazel help'.
bazelisk manages Bazel versions transparently for you. You don't need to install them explicitly. But you have to make sure that you're calling bazelisk instead of bazel. (it seems you called bazel which is installed in /usr/bin)
If you call bazelisk instead of bazel, then bazelisk will read the .bazelversion file and download this version and call it.
Installed bazel 6.5.0 version successfully using bazelisk. In the process of Rebuilding TensorFlow with TensorRT Support successfully completed steps up to Build TensorFlow. Now to Generate TensorFlow Wheel Package when run the command
sudo bazel-bin/tensorflow/tools/pip_package/build_pip_package_py --output-name=tensorflow_pkg.whl --project-name=pointnet --headers=/...../pointnet/tensorflow/tensorflow/core/framework
got error, Traceback (most recent call last):
File "/....../pointnet/tensorflow/bazel-bin/tensorflow/tools/pip_package/build_pip_package_py.runfiles/org_tensorflow/tensorflow/tools/pip_package/build_pip_package.py", line 336, in
I don't know which guide you're following, and I am not too familiar with tensorflow (never heard of the pointnet project nor tensor-rt before). Better ask in some tensorflow / pointnet specific forum.
@Helena2007 this issue is not related to Bazelisk therefore must be closed.
If you're following https://www.tensorflow.org/install/source#build_the_package or some other guide, share context when raising an issue.
I've seen that you opened an issue to the PointNet repo. An advice: try to include as much detail as possible, which guide or instructions you're following, the command you're executing, your machine information, and when dumping stacktraces, try to format them using markdown e.g.
sudo bazel-bin/tensorflow/tools/pip_package/build_pip_package_py --output-name=tensorflow_pkg.whl --project-name=pointnet --headers=/...../pointnet/tensorflow/tensorflow/core/framework
got error, Traceback (most recent call last):
Would suggest you to update https://github.com/charlesq34/pointnet/issues/313
@meteorcloudy can this issue be closed?