pycharm 中 pydev debugger: CRITICAL WARNING: This version of python seems to be incorrectly compiled

这篇具有很好参考价值的文章主要介绍了pycharm 中 pydev debugger: CRITICAL WARNING: This version of python seems to be incorrectly compiled。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

一、在pycharm中,用python3.11时,在Debug调试时出现 pydev debugger: CRITICAL WARNING: 报错

pydev debugger: CRITICAL WARNING: This version of python seems to be incorrectly compiled (internal generated filenames are not absolute)
pydev debugger: The debugger may still function, but it will work slower and may miss breakpoints.
pydev debugger: Related bug: http://bugs.python.org/issue1666807
-------------------------------------------------------------------------------
已连接到 pydev 调试器(内部版本号 222.4459.20)pydev debugger: Unable to find real location for: <frozen codecs>
pydev debugger: Unable to find real location for: <frozen importlib._bootstrap>
pydev debugger: Unable to find real location for: <frozen importlib._bootstrap_external>
pydev debugger: Unable to find real location for: <frozen zipimport>
pydev debugger: Unable to find real location for: <string>
pydev debugger: Unable to find real location for: <frozen abc>
pydev debugger: Unable to find real location for: <frozen ntpath>
pydev debugger: Unable to find real location for: <frozen _collections_abc>
pydev debugger: Unable to find real location for: <frozen os>
pydev debugger: Unable to find real location for: <frozen genericpath>

1、修改文件的配置参数
pycharm 中 pydev debugger: CRITICAL WARNING: This version of python seems to be incorrectly compiled,已解决问题,pycharm,python,调试
2、在 2中填入 -Xfrozen_modules=off pycharm 中 pydev debugger: CRITICAL WARNING: This version of python seems to be incorrectly compiled,已解决问题,pycharm,python,调试
另外升级pycharm到 2022.3版本 即可消除该问题。

二、调试中出现中文乱码

参考链接文章来源地址https://www.toymoban.com/news/detail-607482.html

到了这里,关于pycharm 中 pydev debugger: CRITICAL WARNING: This version of python seems to be incorrectly compiled的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 解决WARNING: There was an error checking the latest version of pip.

    在安装包是出现上图的警告。 报错内容翻译: 警告:检查最新版本的pip时出错。 报错原因 报错原因:需要升级pip版本才可以安装其他模块。 解决方法:升级pip

    2024年02月12日
    浏览(32)
  • 解决pycharm.app/contents/plugins/python/helpers/pydev/pydevd_attach_to_process

    记录一个小问题,mac mini本地pycharm调试代码突然报错如题: applications/pycharm.app/contents/plugins/python/helpers/pydev/pydevd_attach_to_process dubug调试库有文件缺失导致如题报错,虽然是warn警告,但看着不方便,只需要下载下面的库就能解决问题。

    2024年02月15日
    浏览(33)
  • 一招解决WARNING: There was an error checking the latest version of pip

    一招解决WARNING: There was an error checking the latest version of pip WARNING: There was an error checking the latest version of pip 这个错误通常是由于网络连接问题或者pip版本过低导致的。 下滑查看解决方法 可以尝试以下几种解决方法: 检查网络连接是否正常,可以尝试使用ping命令测试网络连接。

    2024年02月08日
    浏览(34)
  • Warning: You are using macOS 13.We do not provide support for this pre-release version.

    安装git 报错 brew install git 解决方法: 直接根据提示安装: xcode-select --install 接着安装 git   brew install git  git 安装成功 

    2024年02月12日
    浏览(32)
  • WARNING: There was an error checking the latest version of pip.报错及解决方法

    警告:检查最新版本的pip时出错。   需要升级pip版本才可以安装其他模块,我们只需要升级pip 在命令操作窗口输入python -m pip install --upgrade pip Successfully uninstalled pip-19.1.1(成功卸载旧版本:22.3.1) Successfully installed pip-20.0.2(成功安装新版本:23.0.1)   在命令操作窗口输入

    2024年02月05日
    浏览(53)
  • 【已解决】WARNING: There was an error checking the latest version of pip.报错问题

    今天在用python的时候出现了WARNING: There was an error checking the latest version of pip.问题。 顾名思义:警告:检查最新版本的pip时出错。 那么很明显问题是没有用最新版本的pip。那找到问题的话就直接上解决方法吧。 更新pip包即可,正常更新就行。然后就能安装了。 1、执行命令前

    2024年02月09日
    浏览(54)
  • this version of the Java Runtime only recognizes class file versions up to 52.0

    博客上很多博主说这个是jdk版本的问题,我所有地方都设置的是jdk1.8,但还是报错 Caused by: java.lang.UnsupportedClassVersionError: org/springframework/cloud/bootstrap/RefreshBootstrapRegistryInitializer has been compiled by a more recent version of the Java Runtime (class file version 61.0), this version of the Java Runtime only re

    2024年02月11日
    浏览(98)
  • Spring问题解决: Java Runtime (class file version 55.0), this version of the Java Runtim

    ch/qos/logback/classic/spi/LogbackServiceProvider has been compiled by a more recent version of the Java Runtime (class file version 55.0), this version of the Java Runtime only recognizes class file versions up to 52.0 这只是版本不匹配。已经使用 Java 版本 11 编译了您的代码,而您当前的 JRE 是版本 8。请尝试将您的 JR降级

    2024年02月11日
    浏览(54)
  • this Docker version is not on the list of validated versions: 24.0.7. Latest validated version: 20.1

    报错信息可以看出跟docker的版本有关系,意思是:此 Docker 版本不在已验证版本列表中: 24.0.7 。 最新验证版本: 20.10 降低docker版本到20.10 1、 查看当前仓库支持的docker版本 yum list docker-ce --showduplicates | sort -r 2、降低docker版本到3:20.10.9-3.el8 语法: yum downgrade --setopt=obsoletes=0

    2024年01月18日
    浏览(41)
  • 彻底解决this version of the Java Runtime only recognizes class file versions up to 52.0

    这个错误的意思是当时开发程序的人使用的JDK的版本要比你现在运行的环境上的JDK版本高。比如他是使用JDK11开发的,然后把程序打包好,你下载了他的jar包到本地运行,然后报错,可能你本地的JDK版本是低于11的,所以报错。 安装JDK21就行。继续看文章下面的对应关系,就知

    2024年02月02日
    浏览(42)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包