stone-py command not found

In this troubleshooting guide we learn how to fix stone-py command not found error message

Introduction

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

stone-py: command not found

or when using sudo you get the following error message

sudo: stone-py: command not found

Solutions to stone-py: command not found

How To Fix stone-py: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu stone-py is provided by python3-stone package.

python3-stone is:

The Official API Spec Language for Dropbox. Define an API once in Stone. Use backends, i.e. code generators, to translate your specification into objects and functions in the programming languages of your choice.

This package contains the Python 3 version of the library.

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

sudo apt-get -y install python3-stone

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

You can also use apt command to install python3-stone.

sudo apt -y install python3-stone

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

sudo aptitude install python3-stone

Summary

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