pwiz command not found

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

Introduction

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

pwiz: command not found

or when using sudo you get the following error message

sudo: pwiz: command not found

Solutions to pwiz: command not found

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

In Ubuntu pwiz is provided by peewee package.

peewee is:

Peewee is a simple and small ORM. It has few (but expressive) concepts, making it easy to learn and intuitive to use.

  • A small, expressive ORM
  • Written in Python with support for version 3.2+.
  • Built-in support for sqlite, MySQL, and PostgreSQL numerous extensions available (postgres hstore/json/arrays, sqlite full-text-search, schema migrations, and much more).

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

sudo apt-get -y install peewee

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

You can also use apt command to install peewee.

sudo apt -y install peewee

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

sudo aptitude install peewee

Summary

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