温馨提示:
1.在终端输入命令时,取$后面部分输入
2.sudo代表权限最高 当看到没有权限的时候在前面加上sudo就OK了
一、安装 RVM
打开终端: 查看 rvm
$ sudo rvm list known
出现一下情况时候 没有安装好rvm需要先安装
-bash: rvm: command not found
RVM:Ruby Version Manager,Ruby版本管理器,包括Ruby的版本管理和Gem库管理
$ curl -L get.rvm.io | bash -s stable
之后:
$ source ~/.bashrc
$ source ~/.bash_profile
等待一段时间后就可以成功安装好 RVM。
$ source ~/.rvm/scripts/rvm
测试是否安装正常
$ rvm -v
二、安装ruby 2.4.1
笔者安装的时候最新的2.4.1:
$ rvm install 2.4.1
注意安装期间 需要敲一次回车 和输入一次用户密码如图 :
三、正式开始装 Cocoapods
1.移除旧源
$ gem sources --remove https://rubygems.org/
2.替换最新的源
$ gem sources -a https://gems.ruby-china.org/
或 $ gem sources --add https://gems.ruby-china.org/
3.检查看是否替换完整:
$ gem sources -l
一下信息表示替换成功
*** CURRENT SOURCES ***
https://gems.ruby-china.org/
4.最后开始安装 Cocoapods
$ sudo gem install cocoapods
看到这个之后:27 gems installed
5.下一步
$ pod setup
这个过程等的比较久 需要下载文件
下载完成:
6.开始体验 Cocoapods
$ pod
-----------------------------分割线---------------------
这个错误 需要修改源
ERROR: Could not find a valid gem 'cocoapods' (>= 0), here is why:
Unable to download data from https://gems.ruby-china.org/ - bad response Not Found 404 (https://gems.ruby-china.org/specs.4.8.gz)
移除源
gem sources -a https://gems.ruby-china.com/
https://gems.ruby-china.com/ added to sources
$ gem sources -l
*** CURRENT SOURCES ***
以上是笔者最新的安装步骤 方便自己查阅 相互学习交流 喜欢就点个赞谢谢 !
20190825
(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"