本文章过程在ubuntu20.04版本16.04下安装非常顺利
官网:https://code.visualstudio.com/Download
# 下载链接格式
https://update.code.visualstudio.com/{version}/linux-deb-x64/stable
# 下载版本:1.57.0
wget https://update.code.visualstudio.com/1.57.0/linux-deb-x64/stable && mv stable code1.57.0.deb
# 安装
dpkg -i code1.57.0.deb
# 卸载步骤
rm -rf ~/.config/Code
apt-get remove --purge code
然后cd /usr/share/applications
将 vscode 的图标拷贝一份到桌面上,双击即可打开,启动失败的话就用终端执行 code,然后code --verbose 查看失败日志
注意:
- 不要使用root用户启动
配置 apt-get 命令 dep 安装包 的源
vim /etc/apt/sources.list // 添加指定的源URL
apt-get update // 更新
apt-get install libnss3 // 安装 libnss3
apt-get -f install // 释放当前安装失败的dep软件
dpkg -i xxx.deb // 安装
参考
标签:code,vscode,apt,blog,https,ubuntu,deb,安装 From: https://www.cnblogs.com/hhddd-1024/p/17764126.htmlLinux下deb包和rpm包区别:https://blog.csdn.net/qq_51899357/article/details/123627414
Ubuntu安装vscode详细教程:https://blog.csdn.net/DuanNaiLin/article/details/131803189
ubuntu下安装vscode:https://blog.csdn.net/m0_56484847/article/details/130831817
Ubuntu16.04中启动VSCode后几秒钟闪退的问题:https://blog.csdn.net/ak47maker/article/details/129988969
ubuntu20 环境下安装idea全纪录,不可能出错:https://blog.csdn.net/perfect2011/article/details/123851513