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

How to Quick-Start With Swift Programming on CentOS 7

July 3, 2018 | By the+gnu+linux+evangelist.

Installing

  1. 2. Installing Dependencies

    Install the Required Package.

    sudo yum install clang libicu-devel

    Authenticate with the User Admin Pass.
    If Got “User is Not in Sudoers file” then see: How to Enable sudo.

  2. 3. Downloading Swift Compiler

    Download Swift Release for CentOS

    Grab Swift Ubuntu Release
  3. 4. Extracting Swift Compiler

    Double-Click on Archive and Extract into /tmp.

    Or from Shell:

    tar xvzf ~/Downloads/swift*tar.gz -C /tmp/
    How to Quick Start with Swift Programming on CentOS 7 - extraction
  4. 5. Installing Swift Compiler

    Next Relocate the Swift stuff
    With:

    sudo mv /tmp/swift* /opt/swift

    And then Set the SuperUser as Owner:

    chown -R root:root /opt/swift

    Moreover, import the GPG Key:

    wget -q -O - https://swift.org/keys/all-keys.asc | sudo gpg --import -
  5. 6. Setting up User’s Path

    Now to Amend the User PATH
    Simply run:

    echo 'export PATH=/opt/swift/usr/bin:$PATH' >> ~/.bashrc

    ReLoad the PATH simply with:

    bash

Contents