7
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-06-07 00:20:49 +00:00

docs: complete uninstalling of tutor

I noticed `pip uninstall -y tutor` will not uninstall the plugins, so I made this PR. I know it's ugly, but I don't find any other way of doing it. Let me know if there are better choices 😊
This commit is contained in:
Crist Ye 2022-05-23 22:46:12 +08:00 committed by Régis Behmo
parent f9b4228033
commit 322a9e6b48

View File

@ -167,3 +167,9 @@ Finally, uninstall Tutor itself::
# If you downloaded the tutor binary
sudo rm /usr/local/bin/tutor
# Optionally, you may want to remove Tutor plugins installed.
# You can get a list of the installed plugins:
pip freeze | grep tutor
# You can then remove them using the following command:
pip uninstall <plugin-name>