编程语言
首页 > 编程语言> > 【编程实践】怎样卸载spyder中的Kite插件

【编程实践】怎样卸载spyder中的Kite插件

作者:互联网

什么是Kite

Kite是一个针对Python的代码补全工具, 开发者在之前的基础上,增加了「Intelligent Snippets」功能。它可以帮助广大开发者在敲代码时,实时生成与上下文相关的代码片段。(看起来是挺好用的,但是就是不想用,哎,就是玩~)
在这里插入图片描述

卸载Kite插件

链接: Kite网址
在这里插入图片描述

//打开anaconda的PowerShell,将下面一段话复制粘贴到窗口,点击回车
Invoke-WebRequest 'http://localhost:46624/clientapi/plugins/installed' `
    -Method 'DELETE' -UseBasicParsing
& 'C:\Program Files\Kite\Uninstaller.exe'

PowerShell窗口显示
在这里插入图片描述
Kite卸载提示
在这里插入图片描述

标签:插件,Kite,代码,spyder,开发者,卸载,PowerShell
来源: https://blog.csdn.net/weixin_41512747/article/details/117985697