这篇文章将为大家详细讲解有关vscode提示找不到chrome浏览器怎么办,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
因为chrome安装时不像其他软件的安装程序一样选择安装路径,等等,而是直接将 Chrome 安装在当前的用户目录。如果你移动了Chrome的安装位置,就会出现这个windows找不到Chrome的问题。
可以通过配置tasks.json文件来解决这个问题。
具体方法如下:
1、按ctrl+shift+p打开命令面板,输入Configure Task然后依次操作
2、然后点击最后一个打开这个文件,进入到了tasks.json。我们可以看到默认配置如下:
{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "echo", "type": "shell", "command": "echo Hello" } ] }
我们需要对这个代码进行修改,如下:
{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "Run HTML file with Chrome", "type": "process", "command": "chrome", "args": ["${file}"], "windows": { //这里写你电脑的Chrome浏览器的安装位置 "command": "C:/Program Files (x86)/Google/Chrome/Application/chrome.exe" }, "group": { "kind": "build", "isDefault": true } } ] }
保存后打开文件,按下Ctrl+Shift+B就能打开浏览器了。
关于“vscode提示找不到chrome浏览器怎么办”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。