$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

How to Install Bazel on Debian Buster – Step-by-step

September 23, 2018 | By the+gnu+linux+evangelist.

Installing

  1. 2. Installing Dependencies

    Then Install the Required Packages with

    sudo apt install pkg-config zip g++ zlib1g-dev unzip python
  2. 3. Downloading Bazel

    Download Bazel for Debian GNU/Linux

    Get Bazel Sh Script for GNU/Linux
  3. 4. Accessing Target

    First, Set the SuperUser as Owner with

    cd && cd Downloads

    Or if Downloaded with Firefox may be instead:

    cd /tmp/mozilla*

    Check the Script is There with:

    ls .
  4. 5. Installing Bazel

    First, Give Execution Permission:

    chmod +x ./bazel*.sh

    Then tor a Local Installation into $HOME/bin and Sets the .bazelrc as $HOME/.bazelrc:

    ./bazel*.sh

    Instead, for a System Wide into /usr/local/bazel:

    sudo ./bazel*.sh
  5. 6. Amending User’s Path

    Only for a Local Installation, Append Bazel into the Path

    echo 'export PATH=$PATH:$HOME/bin' >> ~/.bashrc

    Finally, to Reload the Path do:

    bash

Contents