Installation

General

TAME is a command-line utility, so the installation of all versions of TAME involve opening an archive to a folder and pointing your OS's executable PATH variable to it.

Java

There are two ways to install TAME if you already have Java installed.

Via Shell (macOS and Linux only)

  1. Open a command shell or Terminal window.
  2. Type the following line (or copy and paste it into the prompt) and execute it.

    On macOS:
    curl -sSL https://tame-if.com/install.php?t=java-macos | bash
    On Linux (you'll have to type your sudo credentials):
    curl -sSL https://tame-if.com/install.php?t=java-linux | sudo bash
    This will install TAME and set up tame, tamec, and tamep as shell commands.
  3. If you did it properly and everything installed properly, typing tame (and pressing Enter) should produce something like this:
    TAME Console Shell v1.0 by Matt Tropiano
    Running on: Linux amd64, OpenJDK 64-Bit Server VM, v10.0.1 (Oracle Corporation)
    Type `tame --help` for help.
    

Via File

  1. Ensure that Java's binary folder (bin) is visible from the PATH.
  2. Download the installation package.
  3. Decompress/unzip the package to an appropriate folder.
  4. Add TAME's bin folder to your PATH environment variable (if TAME's folder is /opt/tame, the folder is /opt/tame/bin).
  5. If you did it properly, opening up a new command line window and typing tame (and pressing Enter) should produce something like this:
    TAME Console Shell v1.0 by Matt Tropiano
    Running on: Linux amd64, OpenJDK 64-Bit Server VM, v10.0.1 (Oracle Corporation)
    Type `tame --help` for help.
    

Windows

  1. Download the installation ZIP.
  2. Unzip the package to a folder of your choosing using a package decompressor like 7-zip, or open it like a folder in Windows Explorer and copy the contents to another folder (you may need admin privileges for Program Files).
  3. Add the bin subfolder in that folder to your PATH environment variable (if the full path to TAME is C:\Utilities\TAME, the folder to add would be C:\Utilities\TAME\bin). This differs by Windows version, but for most versions:
    1. Open the Start Menu and type advanced system settings into the search bar.
    2. Click "View advanced system settings"
    3. Click the "Environment Variables..." button near the bottom of that window that appears.
    4. In the "Environment Variables" window that pops up, find "Path" in the "System Variables" section and double-click it.
    5. In Windows 8 and earlier, add a semicolon to the end of the value (;) and then the full path to the folder.
    6. In Windows 10, click "New" and then add the full path to the folder into the list of paths.
  4. If you did it properly, opening up Command Prompt or Powershell and typing tame (and pressing Enter) should produce something like this:
    TAME Console Shell v1.0 by Matt Tropiano
    Running on: Windows 7 amd64, OpenJDK 64-Bit Server VM, v10 (Azul Systems, Inc.)
    Type `tame --help` for help.
    

macOS

There are two ways to install TAME on macOS.

Via Terminal

  1. Open a Terminal window.
  2. Type the following line (or copy and paste it into the prompt) and execute it:
    curl -sSL https://tame-if.com/install.php?t=macos64 | bash
    This will install TAME and set up tame, tamec, and tamep as terminal commands.
  3. If everything installed properly, typing tame (and pressing Enter) should produce something like this:
    TAME Console Shell v1.0 by Matt Tropiano
    Running on: Mac OS X x86_64, OpenJDK 64-Bit Server VM, v10.0.1 (Azul Systems, Inc.)
    Type `tame --help` for help.
    

Via File

  1. Download the installation package.
  2. Decompress the package by double-clicking it in Finder.
  3. Move the created folder to a folder in your Home directory or another appropriate path.
  4. Open a Terminal window.
  5. Add the following line to your home directory's .bash_profile file (or .profile if it doesn't exist) with your favorite editor and save it:
    export PATH="$PATH:/path/to/TAME/bin"
    Where /path/to/TAME is the full path to the folder that TAME is in (make sure you point it at the bin subdirectory!).
  6. If you did it properly, opening up a new Terminal window and typing tame (and pressing Enter) should produce something like this:
    TAME Console Shell v1.0 by Matt Tropiano
    Running on: Mac OS X x86_64, OpenJDK 64-Bit Server VM, v10.0.1 (Azul Systems, Inc.)
    Type `tame --help` for help.
    

Linux

There are two ways to install TAME on Linux.

Via Shell

  1. Open a command shell.
  2. Type the following line (or copy and paste it into the prompt) and execute it (you'll have to type your sudo credentials):
    curl -sSL https://tame-if.com/install.php?t=linux64 | sudo bash
    This will install TAME and set up tame, tamec, and tamep as shell commands.
  3. If everything installed properly, typing tame (and pressing Enter) should produce something like this:
    TAME Console Shell v1.0 by Matt Tropiano
    Running on: Linux amd64, OpenJDK 64-Bit Server VM, v10.0.1 (Oracle Corporation)
    Type `tame --help` for help.
    

Via File

  1. Download the installation package.
  2. Un-TAR the package to an appropriate folder.
  3. Add the following line to your home directory's .bash_profile file (or .profile if it doesn't exist) with your favorite editor and save it:
    export PATH="$PATH:/path/to/TAME/bin"
    Where /path/to/TAME is the full path to the folder that TAME was decompressed to (make sure you point it at the bin subdirectory!).
  4. If you did it properly, opening up a new Bash Shell window and typing tame (and pressing Enter) should produce something like this:
    TAME Console Shell v1.0 by Matt Tropiano
    Running on: Linux amd64, OpenJDK 64-Bit Server VM, v10.0.1 (Oracle Corporation)
    Type `tame --help` for help.