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.
There are two ways to install TAME if you already have Java installed.
Via Shell (macOS and Linux only)
- Open a command shell or Terminal window.
-
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. -
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
- Ensure that Java's binary folder (bin) is visible from the PATH.
- Download the installation package.
- Decompress/unzip the package to an appropriate folder.
- Add TAME's bin folder to your PATH environment variable (if TAME's folder is /opt/tame, the folder is /opt/tame/bin).
-
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.
- Download the installation ZIP.
- 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).
-
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:
- Open the Start Menu and type advanced system settings into the search bar.
- Click "View advanced system settings"
- Click the "Environment Variables..." button near the bottom of that window that appears.
- In the "Environment Variables" window that pops up, find "Path" in the "System Variables" section and double-click it.
- In Windows 8 and earlier, add a semicolon to the end of the value (;) and then the full path to the folder.
- In Windows 10, click "New" and then add the full path to the folder into the list of paths.
-
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.
There are two ways to install TAME on macOS.
Via Terminal
- Open a Terminal window.
-
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. -
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
- Download the installation package.
- Decompress the package by double-clicking it in Finder.
- Move the created folder to a folder in your Home directory or another appropriate path.
- Open a Terminal window.
-
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!). -
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.
There are two ways to install TAME on Linux.
Via Shell
- Open a command shell.
-
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. -
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
- Download the installation package.
- Un-TAR the package to an appropriate folder.
-
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!). -
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.