如何刪除 Kite
Published on Aug. 22, 2023, 12:06 p.m.
Kite這東西雖然好用但是佔用資源太大了。換成tabnine或者github最新搞出來的补全工具GitHub Copilot也不錯。
如何刪除 Kite
To completely remove Kite from your system, here are OS specific commands to:
- Uninstall all editor plugins
- Quit Kite and stop other Kite services
- Uninstall Kite
Mac
Using your preferred Terminal:
curl -X “DELETE” localhost:46624/clientapi/plugins/installed && \
killall “Kite” && \
launchctl remove com.kite.KiteAutostart && launchctl remove com.kite.KiteHelper && \
rm -rf /Applications/Kite.app
Windows
Using PowerShell:
Invoke-WebRequest ‘http://localhost:46624/clientapi/plugins/installed' `
-Method ‘DELETE’ -UseBasicParsing
& ‘C:\Program Files\Kite\Uninstaller.exe’
Linux
Using your preferred Terminal:
curl -X “DELETE” localhost:46624/clientapi/plugins/installed && \
~/.local/share/kite/uninstall