C/C++教程

VS Code離線安裝插件報錯Unable to install extension 'dart-code.flutter' as it is not compatible wi

本文主要是介绍VS Code離線安裝插件報錯Unable to install extension 'dart-code.flutter' as it is not compatible wi,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

VS Code離線安裝插件報錯Unable to install extension 'dart-code.flutter' as it is not compatible with VS Code '1.51.1'.

遇到這種問題不要慌~~

1.把插件後綴名改成.zip

2.打開插件,然後找到package.json文件,找到裡邊這個代碼,把版本號改為

"engines": {
		"vscode": "^1.54.1"
	},

改為報錯信息裡的版本號

"engines": {
		"vscode": "^1.51.1"
	},

3.改回原來的後綴名,開始安裝

4.完美安裝成功~~~

这篇关于VS Code離線安裝插件報錯Unable to install extension 'dart-code.flutter' as it is not compatible wi的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!