How to uninstall tutor plugins?

When I was updating from Nutmeg to Olive via pip install --upgrade "tutor[full]==v15.3.7" I got some errors:

ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
tutor-richie 14.0.0 requires tutor<15.0.0,>=14.0.0, but you have tutor 15.3.7 which is incompatible.
tutor-cairn 14.0.4 requires tutor<15.0.0,>=14.0.0, but you have tutor 15.3.7 which is incompatible.
tutor-indigo 14.0.0 requires tutor<15.0.0,>=14.0.0, but you have tutor 15.3.7 which is incompatible.

I would like to uninstall cairn permanently, and uninstall indigo temporarily (and reinstall on the other side of upgrade.) I just checked and it seems like there’s no documented way to actually uninstall a tutor plugin. How can this be done?

Have you tried
tutor plugins disabled <plugin_name>
and then run
pip list to find the package name
finally
pip uninstall <package_name>

1 Like

That seems to work. Thanks!