在 Ubuntu 下搭建前端开发环境

// 写文章的时候不想浪费太多时间,所以有些地方不是特别详细,以后有时间再详细写写

首先检查本机是否安装了 curl

$ curl

// 如果提示:
The program 'curl' is currently not installed. You can install it by typing:
sudo apt install curl
那就直接安装:$ sudo apt install curl

安装 nodejs

// 更改下载源
curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash -
$ sudo apt-get install -y nodejs

// 验证是否安装成功
$ node -v
$ npm -v

安装编辑器

我常用的是 Vs Code 这里就介绍下它的安装

// 添加PPA源后
$ sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make

// 更新本地库
$ sudo apt-get update

// 安装ubuntu-mask
$ sudo apt-get install ubuntu-make

// 安装vscode
$ sudo umake web visual-studio-code

安装谷歌浏览器

// 将下载源加入到系统的源列表
$ sudo wget http://www.linuxidc.com/files/repo/google-chrome.list -P /etc/apt/sources.list.d/

// 导入谷歌软件的公钥,用于下面步骤中对下载软件进行验证。如果顺利的话,命令将返回“OK"
$ 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

你可能感兴趣的:(在 Ubuntu 下搭建前端开发环境)