首页 > 其他分享 >解决pycharm报错:_jb_pytest_runner.py:7:....from pkg_resources import iter_entry_points

解决pycharm报错:_jb_pytest_runner.py:7:....from pkg_resources import iter_entry_points

时间:2023-09-20 15:56:20浏览次数:57  
标签:iter pytest 报错 pkg setuptools pycharm entry resources

遇到问题
执行pytest用例出现警告

D:\pycharm\PyCharm 2020.1.5\plugins\python\helpers\pycharm_jb_pytest_runner.py:7: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html
from pkg_resources import iter_entry_points

之前一直因为是pytest版本太高了,后来发现不是。仔细对比之前的项目,发现是setuptools 版本升级导致的。

解决问题
出现问题的setuptools 版本:68.2.0

(venv) D:\a_demo\web_pom_play>pip show setuptools
Name: setuptools
Version: 68.2.0
先卸载setuptools

pip uninstall setuptools
安装67.6.1版本

pip install setuptools==67.6.1
到此问题解决
————————————————
版权声明:本文为CSDN博主「上海-悠悠」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_27371025/article/details/133005329

标签:iter,pytest,报错,pkg,setuptools,pycharm,entry,resources
From: https://www.cnblogs.com/longronglang/p/17717526.html

相关文章

  • QA|Pycharm update时报错ssh: connect to host github.com port 22: Connection timed
    场景:另一台电脑很久没有链接Github了,今天执行update失败,报错如下:2023/9/2015:09UpdatefailedFunny_ScriptsandSpider:Connectionresetby20.205.243.166port22Couldnotreadfromremoterepository.Please......
  • 记录小程序 errno":600001,"errMsg":"request:fail -118 报错问题
    "(inpromise)MiniProgramError\n{"errno":600001,"errMsg":"request:fail-118:net::ERR_CONNECTION_TIMED_OUT","data":{"message":"连接服务器失败!","result":"error"}}\nObject"......
  • Ubuntu22.04运行Splash Docker镜像报错,cloud not load the Qt platform xcb in even t
    一、问题描述Ubuntu22.04运行SplashDocker镜像报错,cloudnotloadtheQtplatformxcbineventhoughitwasfound奇怪的地方在于,停止运行,重新执行同样的语句,即恢复正常。本文只做了问题记录,没有深入研究原因。sudodockerrun-it-p8050:8050scrapinghub/splash二......
  • idea连接phoenix报错
    昨天用idea连接phoenix,在pom.xml中导入依赖的时候一直报Couldnottransferartifactorg.apache.phoenix:phoenix-client-hbase-2.4.0:jar:5.1.1from/tocentral的错误,并且idea解决下载jar包的时候也一直很慢,今天早上找了很多教程终于解决了这个问题,原因是因为我maven中的settin......
  • VSCode 报错,Unable to start debugging.(后面内容看图)
    今天用vscode写c++时,调试的时候,突然蹦出这个错误 之前我也以为是lanch.json的配置出错了但我并未更改我的配置啊,经过漫长的百度的之后,发现了原来是文件名不能设置为“中文”。。。。真的服了,以后再也不偷懒了。。。然后我也意识到备份的重要性,下面给出lanch.jason和tasks.......
  • vue:run时报错:EACCES: permission denied([email protected])
    一,报错信息:[eslint]EACCES:permissiondenied,open'/data/vue/responsive/node_modules/.cache/eslint/43541cdc.json’如图:二,解决切换拒绝访问的文件的ownerliuhongdi@lhdpc:/data/vue/responsive$sudochownliuhongdi.liuhongdi-R/data/vue/responsive/node......
  • 解决安装wsl时候报错的问题: WslRegisterDistribution failed with error: 0x800701bc
    在Win10或者Win11上安装wsl的时候,可能会遇到如下的错误信息:Error:0x800701bcWSL2??????????????????https://aka.ms/wsl2kernelPressanykeytocontinue...  这个是由于系统内置的WSL内核过低导致的,可以到如下的网址下载升级包:https://learn.microsoft.com/zh-cn......
  • python报错:pyglet.canvas.xlib.NoSuchDisplayException: Cannot connect to "None"
    运行python代码报错:       问题发现:问题其实十分的狗血,这个代码是在服务器上运行的,运行之前其实并没有看具体的代码情况,gitclone下载下来就直接运行了,原来这个代码需要进行图片绘制,说直白些就是需要显示屏,于是解决方法也十分简单,就是换个带桌面的电脑或者使用......
  • Selenium启动chrome谷歌浏览器报错 session not created: This version of ChromeDriv
    问题Selenium启动chrome谷歌浏览器报错sessionnotcreated:ThisversionofChromeDriveronlysupportsChromeversion114参考https://www.cnblogs.com/interdrp/p/17650061.html解决使用指定版本(stable)的google浏览器和配套的chromedriver驱动。https://googlechrom......
  • 记一次nginx.ingress.kubernetes.io/configuration-snippet报错
    记一次nginx.ingress.kubernetes.io/configuration-snippet报错在迁移xxl-job到k8s集群中,报错one or more objects failed to apply, reason: admission webhook "validate.nginx.ingress.kubernetes.io" denied the request: nginx.ingress.kubernetes.io/configu......