pyzo command not found

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

Introduction

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

pyzo: command not found

or when using sudo you get the following error message

sudo: pyzo: command not found

Solutions to pyzo: command not found

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

In Ubuntu pyzo is provided by pyzo package.

pyzo is:

Pyzo is a cross-platform Python IDE focused on interactivity and introspection, which makes it very suitable for scientific computing. Its practical design is aimed at simplicity and efficiency.

It consists of two main components, the editor and the shell, and uses a set of pluggable tools to help the programmer in various ways. Some example tools are source structure, project manager, interactive help, workspace…

Pyzo is written in (pure) Python 3 and uses the Qt GUI toolkit. Binaries are provided for all major operating system. After installing Pyzo, it can be used to execute code on any Python version available on your system (Python 2.4 - 3.x, including Pypy).

This package provides the Pyzo IDE.

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

sudo apt-get -y install pyzo

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

You can also use apt command to install pyzo.

sudo apt -y install pyzo

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

sudo aptitude install pyzo

Summary

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