go-org command not found

In this troubleshooting guide we learn how to fix go-org command not found error message

Introduction

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

go-org: command not found

or when using sudo you get the following error message

sudo: go-org: command not found

Solutions to go-org: command not found

How To Fix go-org: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu go-org is provided by go-org package.

go-org is:

go-org is an Org mode parser written in Go.

Take a look at https://niklasfasching.github.io/go-org/ for some examples and an online Org → HTML demo (Wasm based).

Please note that the goal for the HTML export is to produce sensible HTML output, not to exactly reproduce output the output of org-html-export.

This package contains the go-org executable.

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

sudo apt-get -y install go-org

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

You can also use apt command to install go-org.

sudo apt -y install go-org

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

sudo aptitude install go-org

Summary

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