首页 > 其他分享 >无法读取 chrome-error://chromewebdata/ 的源映射: Unexpected 503 response from chrome-error://chromewebdata/

无法读取 chrome-error://chromewebdata/ 的源映射: Unexpected 503 response from chrome-error://chromewebdata/

时间:2024-08-02 23:28:06浏览次数:11  
标签:chromewebdata mirrors chrome pypi simple https error -- com

欢迎来到英杰社区https://bbs.csdn.net/topics/617804998

         欢迎来到我的主页,我是博主英杰,211科班出身,就职于医疗科技公司,热衷分享知识,武汉城市开发者社区主理人

        擅长.net、C++、python开发, 如果遇到技术问题,即可私聊博主,博主一对一为您解答

         修改代码、商务合作:

Yan--yingjie

Yan--yingjie

Yan--yingjie

    【常见模块错误】

如果出现模块错误

进入控制台输入:建议使用国内镜像源

pip install 模块名称 -i https://mirrors.aliyun.com/pypi/simple

我大致罗列了以下几种国内镜像源:

清华大学
https://pypi.tuna.tsinghua.edu.cn/simple
     
阿里云
https://mirrors.aliyun.com/pypi/simple/
     
豆瓣
https://pypi.douban.com/simple/
     
百度云
https://mirror.baidu.com/pypi/simple/
     
中科大
https://pypi.mirrors.ustc.edu.cn/simple/
     
华为云
https://mirrors.huaweicloud.com/repository/pypi/simple/
     
腾讯云
https://mirrors.cloud.tencent.com/pypi/simple/

【解决方案】

        在vscode里一直运行不了,会报错,在上网查询许多资料后依然没有解决,后来我发现我的文件目录里多了个.vscode文件直接删除了vscode这个文件,之后就正常运行了 

标签:chromewebdata,mirrors,chrome,pypi,simple,https,error,--,com
From: https://blog.csdn.net/m0_73367097/article/details/140882124

相关文章

  • Python,Geopandas报错,AttributeError: The geopandas.dataset has been deprecated and
    Python版本3.9,Geopandas版本1.0.1问题描述:这是执行的代码,importpandasaspdimportgeopandasimportmatplotlib.pyplotaspltworld=geopandas.read_file(geopandas.datasets.get_path('naturalearth_lowres'))world.plot()plt.show()这是报错信息,Traceback(mo......
  • IndexError:列表索引超出范围使用谷歌视觉
    importioimportosos.environ["GOOGLE_APPLICATION_CREDENTIALS"]="future-shuttle-323208-1e6aebdb018d.json"#ImportstheGoogleCloudclientlibraryfromgoogle.cloudimportvisionfromPILimportImageimportcv2write1=[]wr......
  • 022.(附加)chromedriver编译-绕过selenium机器人检测
    有小伙伴说使用selenium没能绕过机器人检测,盘他。一、selenium简介Selenium是一个强大的工具,用于Web浏览器自动化,更常被用于爬虫但selenium需要通过webdriver来驱动chrome,每次运行selenium时,都要先找到对应版本的chromedriver.exe。chromedriver自动化会对浏览器的部分属......
  • centos7 解决docker 拉取镜像错误 error pulling image configuration: download fai
    为什么会出现i/otimeout错误?i/otimeout错误主要是由于网络连接不稳定或者服务器响应慢导致的。当Docker尝试从镜像仓库拉取镜像时,如果在规定时间内没有得到响应,就会出现i/otimeout错误。“错误的根源在于网络连接和镜像仓库的响应速度” 解决方案:换源为了解决这个......
  • Chrome 桌面版新增 AI 功能,能通过提问搜索你的浏览器历史记录
    谷歌将在Chrome桌面版中推出新的Gemini功能,包括桌面版GoogleLens、购物标签对比功能和自然语言历史搜索。在手机上推出并不断发展的GoogleLens功能,现在终于要在Chrome桌面版上线。它将在地址栏和三点菜单中出现,用户点击后可以选择页面上的一部分,提出更多问题以获取......
  • 使用chrome浏览器驱动自动打开浏览器
    查看自己google浏览器的版本下载与之对应的google浏览器驱动将驱动配置到系统的环境变量开始自动化调用importtimefromseleniumimportwebdriver#创建Chrome浏览器驱动driver=webdriver.Chrome()#打开网页url='https://www.zhihu.com/search?type=content......
  • 创建xtrbackup备份用户 ERROR 1819 (HY000): Your password does not satisfy the cur
    查看密码策略mysql>SHOWVARIABLESLIKE'validate_password%';+--------------------------------------+--------+|Variable_name|Value|+--------------------------------------+--------+|validate_password_check_user_name......
  • TemplateSyntaxError 无法解析其余部分
    我的Django模板中有一点jinja2:{%forfilesystem,total_quota,total_usage,df_usageintotals_by_filesystem%}<tr><td>{{filesystem}}</span></td><td>{{total_quota|filesizeformat}}</td><td>{{to......
  • 【完美解决】 TypeError: ‘str’ object does not support item assignment
    【完美解决】TypeError:‘str’objectdoesnotsupportitemassignment在Python编程中,遇到TypeError:'str'objectdoesnotsupportitemassignment这样的错误通常意味着你试图修改字符串中的某个字符,但字符串是不可变类型,不支持这种操作。本文将深入探讨这一错误......
  • NameError:名称“img”未定义
    cap=cv2.VideoCapture('video.mp4')defrealTime():whileTrue:success,img=cap.read()img=cv2.resize(img,(0,0),None,0.5,0.5)ih,iw,channels=img.shape#Drawthecrossinglinescv2.line(img,(0......