个人怎么做一个网站,长沙谷歌seo收费,商务网站建设策划书2000字,济南软件外包公司1.sudo add-apt-repository ppa:webupd8team/sublime-text-3回车#xff0c;出现很多信息。但是我们看看图片最后字知道#xff0c;这地方在等待我们确认是否添加这个仓库#xff0c;按enter键继续#xff0c;按crtlc取消。此时#xff0c;按ENTER继续#xff0c;建立信任…1.sudo add-apt-repository ppa:webupd8team/sublime-text-3回车出现很多信息。但是我们看看图片最后字知道这地方在等待我们确认是否添加这个仓库按enter键继续按crtlc取消。此时按ENTER继续建立信任数据库。2.sudo apt-get update3.安装Sublime Text 3:sudo apt-get install sublime-text-installer然后等待安装…………安装完成后要安装nodejs插件2)下载sublime的nodejs插件需是集成Nodejs插件到sublime中下载地址https://github.com/tanepiper/SublimeText-Nodejs3)解压zip文件 并重命名文件夹“Nodejs”4)打开sublime操作preference -- Browse packages, 打开一个目录这个目录是众多语言IDE插件的存放地。5)复制”Nodejs“文件夹到这个目录。 这样就可以了吗 酱样子还不行还要更改配置文件。6)打开Nodejs文件夹找到文件“Nodejs.sublime-build” 拖拽到sublime显示{cmd: [node, $file],file_regex: ^[ ]*File \(...*?)\, line ([0-9]*),selector: source.js,shell:true,encoding: utf8,windows:{cmd: [node, $file]},linux:{cmd: [killall node; node $file]},osx:{cmd: [killall node; node $file]}}需要更改上面标注的地方 要更改encoding为GB2312或者utf8如果不更改此属性可能导致build nodejs代码时终端显示乱码。7)要用sublime打开文件“Nodejs.sublime-settings” 或者 设置“preference” --》 “package settings” --》 “Nodejs” --》“setting-default” 打开文件并 更改,将node 和 npm命令路径配置我的nodejs路径为/home/wawa/NodeJs/node-v4.2.2-linux-x64/{// save before running commandssave_first: true,// if present, use this command instead of plain node// e.g. /usr/bin/node or C:\bin\node.exe//node_command: /home/wawa/NodeJs/node-v4.2.2-linux-x64/bin/node,node_command: /home/wawa/NodeJs/node-v4.2.2-linux-x64/bin/node,// Same for NPM commandnpm_command: /home/wawa/NodeJs/node-v4.2.2-linux-x64/bin/npm,// as NODE_PATH environment variable for node runtimenode_path: false,expert_mode: false,ouput_to_new_tab: false}