Installation

Setup Terminalwire on workstations and configure the $PATH variable

Terminalwire may be installed by running the following command in your terminal:

Install Terminalwire on Linux or macOS
curl -sSL https://terminalwire.sh | bash
Restart your terminal to complete the installation

The Terminalwire installer does the following on your workstation:

  1. Downloads the Terminalwire client runtime to /opt/terminalwire
  2. Detects and configures your shell initialization file to include the directories /opt/terminalwire/bin and ~/.terminalwire/bin in your $PATH variable
  3. Creates a ~/.terminalwire directory to store Terminalwire configuration files.

Once installed, run the terminalwire command to verify it’s properly installed and you should see output similar to the following:

Run the base terminalwire command
terminalwire
Commands:
  terminalwire apps            # List apps installed in terminalwire directory
  terminalwire help [COMMAND]  # Describe available commands or one specific ...
  terminalwire install NAME    # Install a terminalwire app
  terminalwire list            # List installed apps in terminalwire directory
  terminalwire open            # Open terminal wire in the browser.
  terminalwire setup           # Setup terminalwire
  terminalwire uninstall NAME  # Uninstall a terminalwire app

That’s it! You have successfully installed Terminalwire on your workstation.

Manual configuration

If you prefer to manually configure your shell, the following commands will add the Terminalwire binary directory to your $PATH variable.

Linux or Bash

Linux or bash
echo 'export PATH=/opt/terminalwire:$PATH:$HOME/.terminalwire/bin' >> ~/.bashrc
Reload your shell or run...
source ~/.bashrc

macOS or zsh

macOS or zsh
echo 'export PATH=/opt/terminalwire:$PATH:$HOME/.terminalwire/bin' >> ~/.zshrc
Reload your shell or run...
source ~/.zshrc

Test the installation

To verify the installation, run the terminalwire setup verify command. If all is well, you should see a success message.

Verify the installation
terminalwire setup verify
Verifying Terminalwire installation...
✅ Terminalwire home directory is present at ".terminalwire".
✅ Terminalwire directory ".terminalwire/bin" is present in $PATH.
It appears Terminalwire is properly installed! If you're still having problems check out the docs at https://terminalwire.com/docs/client.

Once the installation is verified, you’re ready to start installing apps and using Terminalwire on your workstation.