编程语言
首页 > 编程语言> > 【BUG】The Python Tools server crashed 5 times in the last 3 minutes. The server will not be restarted

【BUG】The Python Tools server crashed 5 times in the last 3 minutes. The server will not be restarted

作者:互联网

今天在使用VSCode时无法进行变量和函数跳转,而且在刚刚打开python文件时出现报错:
The Python Tools server crashed 5 times in the last 3 minutes. The server will not be restarted

解决方案:
查阅资料发现是language server出现了问题,我们在settings.json中显式指定:

"python.languageServer":"Jedi"

即可。stackoverflow和GitHub传送门上很多人将"Jedi"替换为"Microsoft",也可以,不过这个server本人没有测试,不知道效果怎么样,之前一直是默认的Jedi,可能python升级后需要显示指定从而出现报错。
在这里插入图片描述

拓展:了解Language Server

标签:last,restarted,python,server,Python,Jedi,报错,crashed
来源: https://blog.csdn.net/weixin_45019478/article/details/114389737