repetier-host command not found

In this troubleshooting guide we learn how to fix repetier-host command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

repetier-host: command not found

or when using sudo you get the following error message

sudo: repetier-host: command not found

Solutions to repetier-host: command not found

How To Fix repetier-host: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu repetier-host is provided by repetier-host package.

repetier-host is:

Repetier-Host allows you to perform all the steps needed to 3D-print models. It supplies the following features:

  • arranging model(s) on a virtual print plate
  • slicing the model and computing paths for printer head
  • checking the g-code for errors
  • sending the g-code to printer
  • monitoring the printer

To fix this problem, we can install more using the command below.

sudo apt-get -y install repetier-host

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install repetier-host.

sudo apt -y install repetier-host

Or if you have aptitude installed you can use the following command.

sudo aptitude install repetier-host

Summary

In this tutorial we learn how to fix repetier-host command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.