Installing
- 
2. Installing DependenciesThen Install the Required Packages with: sudo dnf install pkgconfig gcc-c++ zip zlib-devel python 
- 
3. Downloading Bazel for CentOS 10Download Bazel for CentOS Stream 10 GNU/Linux 
- 
4. Accessing TargetFirst, Set the SuperUser as Owner with cd && cd Downloads To check the Script is there with: ls . | grep bazel The grep Command refine the output List showing only the Entries matching the Keyword. 
 But if you are in Trouble to Find the Location on Terminal then See: How to Access Downloads Folder from Browser.
- 
5. Installing BazelNow to Install Bazel 
 First, give Execution Permission to the Installation Script:chmod +x ./bazel*.sh Then for a Local Installation into $HOME/bin run: ./bazel*.sh Instead, for a System Wide into /usr/local/bazel: sudo ./bazel*.sh 
- 
6. Amending User’s PathOnly for a Local Installation, Append Bazel into the Path echo 'export PATH=$PATH:$HOME/bin' >> ~/.bashrc Finally, to Reload the Path do: bash 
Contents
