rkward command not found

In this troubleshooting guide we learn how to fix rkward command not found error message

Introduction

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

rkward: command not found

or when using sudo you get the following error message

sudo: rkward: command not found

Solutions to rkward: command not found

How To Fix rkward: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu rkward is provided by rkward package.

rkward is:

RKWard aims to become an easy to use, transparent frontend to R, a powerful system for statistical computation and graphics. Besides a convenient GUI for the most important statistical functions, future versions will also provide seamless integration with an office-suite.

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

sudo apt-get -y install rkward

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

You can also use apt command to install rkward.

sudo apt -y install rkward

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

sudo aptitude install rkward

Summary

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