mac 升级ruby版本

时间:2024-05-19 22:30:37

在安装fastlane时有下面的提示错误

mac 升级ruby版本

需要ruby最低版本是2.1,所以需要先升级

一.使用RVM也就是Ruby Version Manager,Ruby版本管理器来升级ruby,rvm包含了Ruby的版本管理和Gem库管理(gemset)

1、Rvm安装

curl -L get.rvm.io | bash -s stable

但执行这个语句的会出现下面错误,如图所示

mac 升级ruby版本

* WARNING: '~/.profile' file found. To load it into your shell, add the following line to '/Users/zhangqioage/.bash_profile':  

source ~/.profile

提示已经告诉我们:打开.base_profile文件,将“source ~/.profile”添加到里面去即可

若是在command + shift + g 你来搜素/Users/xxx/.bash_profile这个你是搜索不到的,因为隐藏了,我们进入这个目录,将所有文件显示出来

命令 ls -a


打开.bash_profile

命令 open .bash_profile

打开文件后将“source ~/.profile”这句话写进去,保存下来

然后再安装

1、curl -L get.rvm.io | bash -s stable

2、source ~/.bashrc

3、source ~/.bash_profile

然后再安装 然后查看rvm现在版本号是多少

rvm -v

二、使用RVM升级Ruby

1.查看当前ruby版本

ruby -v

2.列出已知ruby的版本

rvm list known

稍等一下,会出现很多平台不同的ruby的版本,

3.安装ruby

rvm install 版本号

4.安装完之后,可以ruby -v测试一下,看看版本有没有变化,在这一步,需要按回车键,连续按几次,当然如果你没装xcode,需要先去装xcode,不然会报错