有了ubuntu一些都是那么轻松!
1.安装node和npm
sudo apt nodejs|npm
2.安装vs code
sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make
sudo apt-get update
sudo apt-get install ubuntu-make
umake web visual-studio-code
umake web visual-studio-code的时候会问你安装路径 需要改路径自行设置,不改就一步一步安装即可
以上方式失败的话推荐官方给的安装方式
The repository and key can also be installed manually with the following script:(这个仓库和密钥也能够被手动安装使用下面脚本)
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list'
Then update the package cache and install the package using(然后使用下面的命令来安装):
sudo apt-get update
sudo apt-get install code # or code-insiders
如果显示add-apt:找不到命令,使用以下方式安装
sudo apt-get install python-software-properties
sudo apt-get update
3、安装sublime3(后续插件靠自己了)
sudo add-apt-repository ppa:webupd8team/sublime-text-3
sudo apt-get update
sudo apt-get install sublime-text-installer
4、安装chrome
sudo wget http://www.linuxidc.com/files/repo/google-chrome.list -P /etc/apt/sources.list.d/ #将下载源加入到系统的源列表。如果返回“地址解析错误”等信息,可以百度搜索其他提供 Chrome 下载的源,用其地址替换掉命令中的地址。
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add - #导入谷歌软件的公钥,用于下面步骤中对下载软件进行验证。
sudo apt-get update
sudo apt-get install google-chrome-stable #执行对谷歌 Chrome 浏览器(稳定版)的安装。