Ubuntu 安装 Electron

前端之家收集整理的这篇文章主要介绍了Ubuntu 安装 Electron前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Installing Node.js via package manager 安装Node.js:

curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install -y nodejs

然后再 安装Electron:

git clone https://github.com/electron/electron.git
cd electron
# Install as a development dependency
npm install electron --save-dev

到这一步的时候出错了:

dq@dq-ubuntu:~/Electron/electron$ npm install electron --save-dev
npm ERR! Linux 4.4.0-72-generic
npm ERR! argv "/usr/bin/nodejs" "/usr/bin/npm" "install" "electron" "--save-dev"
npm ERR! node v6.10.2
npm ERR! npm  v3.10.10
npm ERR! code ENOSELF

npm ERR! Refusing to install electron as a dependency of itself
npm ERR!
npm ERR! If you need help,you may report this error at:
npm ERR!     <https://github.com/npm/npm/issues>

npm ERR! Please include the following file with any support request:
npm ERR!     /home/dq/Electron/electron/npm-debug.log

查了一下,Node Newbie Error – NPM Refusing to Install Package as a Dependency of Itself 这篇文章的奇淫巧计用着不错:

gedit package.json

"name": "electron" 改为 "name": "electron-test",保存. 然后:

# Install as a development dependency
npm install electron --save-dev

# Install the `electron` command globally in your $PATH
sudo npm install electron -g

就好了. 检查一下:

dq@dq-ubuntu:~/Electron/electron$ electron --version
v1.6.5
原文链接:https://www.f2er.com/ubuntu/353292.html

猜你在找的Ubuntu相关文章