jupyter-server command not found

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

Introduction

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

jupyter-server: command not found

or when using sudo you get the following error message

sudo: jupyter-server: command not found

Solutions to jupyter-server: command not found

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

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

jupyter-server is:

This software component contains the server backend for Jupyter web applications like the Jupyter notebook or Jupyterlab.

This package contains the jupyter-server tool.

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

sudo apt-get -y install jupyter-server

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

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

sudo apt -y install jupyter-server

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

sudo aptitude install jupyter-server

Summary

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