公司项目现在要使用mPaas作为底层开发,根据官方文档进行配置,总是报 Unable to require openssl, install OpenSSL and rebuild Ruby (preferred) or use non-HTTPS sources
这样的错误
后来发现错误原因实际上是ruby引起的,官方文档的插件应该是依赖https://gems.ruby-china.com/这个gem源的,想要安装mPaas插件需要ruby2.2版本,但是这个版本会出现OpenSSL的问题,解决办法如下
rvm get head
brew install openssl
rvm reinstall 2.2.4 --with-openssl-dir=`brew --prefix openssl`
这样重新配置下ruby2.2.4版本就解决了
然后就可以按照官方的方法继续走下去了
sh <(curl -s http://mpaas-ios.oss-cn-hangzhou.aliyuncs.com/mPaaS-Install-Tool/installmPaaS.sh )
成功截图如下:
喜欢请点赞☺