This is because you installed one package called sox , which brings the play command.
Therefore, when you run play something , you run this program, not the playback platform.
So you should:
Uninstall this package: it is not installed by default in Ubuntu, so if you really do not need it for other purposes, you should uninstall it.
apt-get remove sox
Add a game frame to your PATH. Suppose your playback setting is in /opt/play , just do something like
export PATH=/opt/play/bin:$PATH
You must add these commands to the required file (for example: bootstrap.sh).
Salem source share