首页 > 编程语言 >vscode python 3.7 pylance debugpy 插件 vsix

vscode python 3.7 pylance debugpy 插件 vsix

时间:2024-07-30 11:31:30浏览次数:12  
标签:插件 debugger vscode pylance python 3.7 版本

可能报错    crashed 5 times in the last 3 minutes. The server will not be restarted.   --- pylance

 

可能报错    cannot read properties of undefined reading resolveEnvironment      ---  debugger

可能            vscode python3.7 调试 没有反应        ---  debugger

可能           “python扩展正在加载”一直在加载或加载python扩展失败     

 

 

大概可能都是插件版本问题

 

本人的背景是,无网环境的离线安装, vscode python 3.7.9

python debugger 插件

尝试很久,python debugger 插件 各种版本不能使用, 

今天尝试 用原生的,看似可以了

https://blog.csdn.net/qq_40197828/article/details/93468787

lauch.json
{
  name: 'custom name',
type: 'python', // critical ; 如果是 python debugger插件 值是debugpy 
request: 'launch',
program: '${file}',
"console": 'integratedTerminal' }

 

python 插件 当前安装的 2022.6.0版本

pylance 插件 当前安装的 2023.6.42版本

vscode版本 当前安装的 1.91.1版本

 

标签:插件,debugger,vscode,pylance,python,3.7,版本
From: https://www.cnblogs.com/dhjy123/p/18331995

相关文章

  • 从小白到大神:这几个Zotero插件让你的学术之路畅通无阻
    今天给大家推荐另外几款很不错的zotero插件~zotero官方推荐插件,网页链接:zotero官方推荐插件GitHub官网插件下载链接:GitHub官网下载1.Scholaread靠岸学术——文献翻译手机阅读下载scholaread靠岸学术插件:scholaread靠岸学术插件下载Scholaread靠岸学术网页直达:Scholaread靠......
  • Dynamics 365 插件的优缺点
    在现代企业环境中,客户关系管理(CRM)系统如Dynamics365扮演着至关重要的角色。为了满足特定业务需求,企业常常需要对系统进行自定义和扩展。Dynamics365插件(Plugin)正是实现这一目的的重要工具。本文将探讨使用Dynamics365插件的优缺点。插件的优点1.自动化流程插件......
  • vscode config vim
    settings.json//Placeyourkeybindingsinthisfiletooverridethedefaultsauto[][//terminal=================//切换到terminal终端{"key":"ctrl+,","command":"workbench.action.terminal.toggleTerminal&......
  • 优化 GitHub 体验的浏览器插件「GitHub 热点速览」
    上周,GitHub有个“安全问题”——CFOR(CrossForkObjectReference)冲上了热搜,该问题的表现是:远程仓库的提交内容任何人可以访问,即使已被删除。只需要拿到commitID+源/Fork的项目地址,任何人都能访问之前提交到远程仓库的内容。下面有3个演示,可以复现该问题:演示一:Fork项目......
  • vscode snippets
    snippets\cpp.json{ //Placeyoursnippetsforcpphere.Eachsnippetisdefinedunderasnippetnameandhasaprefix,bodyand //description.Theprefixiswhatisusedtotriggerthesnippetandthebodywillbeexpandedandinserted.Possibleva......
  • Sonatype Nexus Repository搭建与使用(详细教程3.70.1)
    目录一.环境准备二.安装jdk三.搭建Nexus存储库四.使用介绍 一.环境准备主机名IP系统软件版本配置信息nexus192.168.226.26Rocky_linux9.4NexusRepository3.70.1MySQL8.0jdk-11.0.232核2G,磁盘20G进行时间同步,关闭防火墙和selinuxJavaArchiveDownloads......
  • UniApp 原生插件接入步骤
    app插件主要分2种:原生语言插件原生语言插件有分为2类:(1)moduleAPI接口插件这种插件是API插件,有同步或异步API(2)UIcomponent组件插件这种插件是UI视图组件,使用到插件里的UI组件的页面要用nvueUTS插件uts集成步骤参考https://www.cnblogs.com/wenrisheng/p/183230......
  • Jenkins之插件Blue Ocean
    1、安装插件BlueOcean 2、创建并配置: 3、将生成的公钥配置到gitlab: 4、配置完公钥: 创建完后: 因为这个仓库有Jenkinsfile文件,所以会直接执行: 而不会进行设计步骤,查看执行结果: 对应仓库文件Jenkinsfile: ......
  • ComfyUI插件:ComfyUI Impact 节点(三)
    前言:学习ComfyUI是一场持久战,而ComfyUIImpact是一个庞大的模块节点库,内置许多非常实用且强大的功能节点,例如检测器、细节强化器、预览桥、通配符、Hook、图片发送器、图片接收器等等。通过这些节点的组合运用,我们可以实现的工作有很多,例如自动人脸检测和优化修复、区域增强、......
  • VSCode 的 Python 扩展中更详细的属性提示
    假设我有一个对象args由parser.parse_args()返回,并且它应该具有像args.port=6001、args.seed=1234这样的属性。当我在VSCode中按args.时,port和seed不会显示在建议的属性列表中,因为这些属性可能会......