最近vue项目打包扔到线上发现更改的东西显示空白页面 然后就猜测可能是vscode版本的问题,这个时候我去更新版本突然发现以下问题: Cannot update while running on a read-only volume. The application is on a read-only volume. Please move the application and try again. If you’re on macOS Sierra or later, you’ll need to move the application out of the Downloads directory. See this link for more information.
大概意思就是说我是只读权限,然后官方说执行以下两个指令就可以了
sudo chown -R $USER ~/Library/Caches/com.microsoft.VSCode.ShipIt
xattr -dr com.apple.quarantine /Applications/Visual\ Studio\ Code.app
第一行代码会让你输入密码来进行操作,密码输入的时候是不显示的大胆输入完回车就行 第二行代码/Applications/Visual\ Studio\ Code.app这个是代表你的vscode的程序路径,mac版本可能不太好找路径,推荐下载一个超级右键软件然后在应用程序中找到vscode之后直接右键去copy路径就可以了 最后再去打包发现没问题
|