jupyter-console command not found

In this troubleshooting guide we learn how to fix jupyter-console command not found error message

Introduction

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

jupyter-console: command not found

or when using sudo you get the following error message

sudo: jupyter-console: command not found

Solutions to jupyter-console: command not found

How To Fix jupyter-console: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu jupyter-console is provided by jupyter-console package.

jupyter-console is:

Terminal-based console frontend for Jupyter kernels, like ipython but with support for non-python kernels.

This package installs the jupyter-console script.

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

sudo apt-get -y install jupyter-console

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

You can also use apt command to install jupyter-console.

sudo apt -y install jupyter-console

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

sudo aptitude install jupyter-console

Summary

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