Ubuntu/Debian 微信安装

Posted 白菜菜白

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu/Debian 微信安装相关的知识,希望对你有一定的参考价值。

1. 更新系统

$ sudo apt-get update
$ sudo apt-get install git-core curl build-essential openssl libssl-dev

 2. 安装Node.js

     首先我们先从github上将Node.js库克隆到本地:

$ git clone https://github.com/nodejs/node.git
$ cd node

 3. 编译和安装Node:

$ ./configure
$ make
$ sudo make install

    安装完毕,可以在命令行里面输入以下命令以便确认Node是否安装完毕:

$ node -v
v0.10.33

    这个命令会输出你安装Node版本信息,如果你电脑上面输出和下面的类似,那恭喜你了,安装Node成功。

4. 安装npm

    这个很简单,NPM官方提供了安装NPM的脚本,所以我们把这个脚本下载下来执行一下就可以:

$ wget https://npmjs.org/install.sh --no-check-certificate
$ chmod 777 install.sh
$ ./install.sh
$ npm -v
2.7.6

   如果输入npm -v,返回的是一个类似上面的版本信息,那么NPM也就安装成功了!

5. 安装wechat

# Clone this repository
git clone https://github.com/geeeeeeeeek/electronic-wechat.git
# Go into the repository
cd electronic-wechat
# Install dependencies and run the app
npm install && npm start

   如果要打包成一个应用程序,按照自己的平台执行以下之一:

npm run build:osx
npm run build:linux
npm run build:win32
npm run build:win64

 

 

 

 

 

 

以上是关于Ubuntu/Debian 微信安装的主要内容,如果未能解决你的问题,请参考以下文章

Mosquitto安装_Ubuntu/Debian上安装消息队列Mosquitto

Ubuntu/Debian查看已经安装的软件包

Ubuntu/Debian查看已经安装的软件包

在ubuntu/debian上安装rmagick依赖项

.deb 包如何安装到指定目录; Ubuntu; Debian like;

ubuntu Debian deepin 显卡安装和黑屏 卡死解决办法