1,Mac 安装 apt-get
1,Mac OSX10.10上安装Fink
https://www.jianshu.com/p/6c35adc728ec
教程 http://www.finkproject.org/download/srcdist.php?phpLang=zh
http://www.finkproject.org/doc/users-guide/install.php?phpLang=zh
开始用的自动脚本,安装完成以后 找不到 fink命令
后来用的 第二种方式手动安装
下载后 不要手动解压,要用下面的命令行解压。
安装步骤和这个网址差不多
https://finkers.wordpress.com/installing-fink/
$ sudo xcode-select -switch $ /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -license
$ HOME/Downloads
$ tar -xvf fink-0.43.1.tar.gz
$ cd fink-0.43.1
$ ./bootstrap
一路按回车就行,
等待安装很久。
但是最后一步,会提醒你是否重新设置变量,一定要选择NO
等待安装很久。
完成。
运行命令
/sw/bin/pathsetup.sh
我的是zsh终端 在.zshrc 最后添加两行代码
source /sw/bin/init.sh
export PATH="/usr/local/opt/openssl/bin:$PATH"
然后重启终端 ,这个时候就可以用 apt-get命令了
2,Mac 安装 Mojo-Webqq v2.2.0
https://github.com/sjdy521/Mojo-Webqq
1,安装perl
mac 自带 perl,就不用安装了
2,安装cpanm包管理工具
通过cpan安装cpanm
$ cpan -i App::cpanminus
3, 使用cpanm在线安装 Mojo::Webqq 模块(如果系统已经安装了该模块,执行此步骤会对模块进行升级)
$ sudo cpanm Mojo::Webqq
上个命令要用 sudo,不然下一步运行会报下面的错误。
Can't locate Mojo/Webqq.pm in [@inc](https://github.com/inc) (you may need to install the Mojo::Webqq module) ([@inc](https://github.com/inc)contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.22.2 /usr/local/share/perl/5.22.2 /usr/lib/x86_64-linux-gnu/perl5/5.22 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.22 /usr/share/perl/5.22 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at a.perl line 2. BEGIN failed--compilation aborted at a.perl line 2.
https://github.com/sjdy521/Mojo-Webqq/issues/42
https://github.com/sjdy521/Mojo-Webqq/issues/129
如果报错,重新运行
$ sudo cpanm Mojo::Webqq
4, 运行
#!/usr/bin/env perl
use Mojo::Webqq;
my ($host,$port,$post_api);
$host = "0.0.0.0"; #发送消息接口监听地址,没有特殊需要请不要修改
$port = 5000; #发送消息接口监听端口,修改为自己希望监听的端口
#$post_api = 'http://xxxx'; #接收到的消息上报接口,如果不需要接收消息上报,可以删除或注释此行
my $client = Mojo::Webqq->new();
$client->load("ShowMsg");
$client->load("Openqq",data=>{listen=>[{host=>$host,port=>$port}], post_api=>$post_api});
$client->run();
保存到桌面成文件 webqq.pl
终端运行
$ perl /Users/用户名/Desktop/webqq.pl
基本就能运行了。
下一步要安装 Webqq-Encryption 了。
3,Mac 安装 Webqq-Encryption
https://github.com/sjdy521/Webqq-Encryption
https://metacpan.org/pod/distribution/Webqq-Encryption/lib/Webqq/Encryption.pod
官方教程是
Ubuntu/MacOS
`apt-get install libcrypt-openssl-bignum-perl libcrypt-openssl-rsa-perl`
-
在线安装 Webqq::Encryption
cpanm Webqq::Encryption
但是第一步就报错了,因为找不到 libcrypt-openssl-bignum-perl
这个时候要搜索一下
apt-cache search bignum
发现其实真实名字是
crypt-openssl-bignum-pm5182
这个时候要搜索一下
apt-cache search rsa
发现其实真实名字是
crypt-openssl-rsa-pm5182
这个时候知道真实名字了,可以运行第一条命令了
sudo apt-get install crypt-openssl-bignum-pm5182 crypt-openssl-rsa-pm5182
安装成功
然后运行第二条命令
cpanm Webqq::Encryption
报错
看下log文件,说是 <openssl/err.h>找不到
去github看了下 bignum的源文件
https://github.com/kmx/perl-Crypt-OpenSSL-Bignum/blob/master/Bignum.xs
果然是第5行错误
这个时候我找了很久,感觉是OpenSSL安装错误。
后来想到直接去导入头文件
https://blog.bbzhh.com/index.php/archives/108.html
然后将整个openssl 头文件所在目录拷贝至/usr/local/include/ 和 /usr/include中
我的 openssl 头文件 在/usr/local/Cellar/openssl/1.0.2o_1/include/openssl 这里。
如果这两个目录无法写进去文件,重启电脑 command+r 进入恢复模式
运行命令
csrutil disable
https://www.jianshu.com/p/22b89f19afd6
然后重新启动,把openssl 头文件复制到刚才的那两个目录下。
打开终端 运行 设置可以读写
sudo chmod u+w /usr/include
我的是zsh终端 在.zshrc 最后添加两行代码
export PATH="/usr/include:$PATH"
export PATH="/usr/local/include:$PATH"
然后重启终端,再次运行第二条命令
cpanm Webqq::Encryption
成功
这个文章可以有用,我没用 http://www.liuchungui.com/blog/2016/05/10/mac10-dot-11sheng-ji-an-zhuang-openssl/
这个链接用了
https://stackoverflow.com/questions/38670295/homebrew-refusing-to-link-openssl
Mojo-Webqq 使用方法
http://search.cpan.org/dist/Mojo-Webqq/doc/Webqq.pod
https://github.com/sjdy521/Mojo-Webqq/blob/master/API.md
https://metacpan.org/pod/distribution/Mojo-Webqq/doc/Webqq.pod
用户名 密码登陆
https://github.com/sjdy521/Mojo-Webqq/issues/183