From 572b9c8ab39d13f9923e8022efc8c0e39b240770 Mon Sep 17 00:00:00 2001 From: Jacob Riddle Date: Tue, 11 Feb 2025 09:41:01 -0500 Subject: [PATCH 1/2] add uninstall blurb --- wiki/_Sidebar.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wiki/_Sidebar.md b/wiki/_Sidebar.md index a22828883..26921b0fd 100644 --- a/wiki/_Sidebar.md +++ b/wiki/_Sidebar.md @@ -1,4 +1,5 @@ - [Installation](./Installation) +- [Uninstallation](./Uninstallation) - [Configuration](./Configuration) - [Usage](./Usage) - [Output](./Output) @@ -7,4 +8,4 @@ - [Overview](./Development%20-%20Overview) - [Skeleton](./Development%20-%20Skeleton) - [Setup](./Development%20-%20Setup) - - [Testing](./Development%20-%20Testing) \ No newline at end of file + - [Testing](./Development%20-%20Testing) From fcd693aff6a7e1426e5e831e9737be8a5cd82f10 Mon Sep 17 00:00:00 2001 From: Jacob Riddle Date: Wed, 26 Feb 2025 14:21:27 -0500 Subject: [PATCH 2/2] add doc --- wiki/Uninstallation.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 wiki/Uninstallation.md diff --git a/wiki/Uninstallation.md b/wiki/Uninstallation.md new file mode 100644 index 000000000..22fb9d402 --- /dev/null +++ b/wiki/Uninstallation.md @@ -0,0 +1,13 @@ +# Uninstallation + +## PyPi + +```bash +pip3 uninstall linode-cli +``` + +If you would like to remove the config file (easy to re-create) you must do so manually. + +```bash +rm $HOME/.config/linode-cli +```