Reputation: 119
I am using Redhat 7.3. I need to install tensorflow for that I already installed bazel 0.29.0 and when I wanted to configure tensorflow it requires bazel 0.26.1. Thats why i tried to uninstall bazel 0.29.0 but was not able to do it. I am new in Redhat community , could you please show me a way how to solve this problem ? Thanks in advance.
Upvotes: 4
Views: 10658
Reputation: 1
On Mac: If you used brew for uninstalling, use:
brew uninstall bazel@version
Upvotes: 0
Reputation: 2626
For newer versions 2.1.1
, I executed the following
sudo rm /usr/bin/bazel /etc/bazelrc /usr/lib/bazel
Upvotes: 3
Reputation: 1918
Try:
rm $HOME/.cache/bazel
sudo rm /usr/local/bin/bazel /etc/bazelrc /usr/local/lib/bazel
Worked for me. I needed to reinstall bazel
Upvotes: 4