近期對(duì)RVM和Ruby進(jìn)行更新的時(shí)候,發(fā)現(xiàn)大多數(shù)文章都是RVM的安裝溪椎,并沒(méi)有涉及到更新普舆,所以特意寫(xiě)了這個(gè)文章,記錄并分享校读。
http://www.rvm.io/rvm/upgrading —— 這是官網(wǎng)文檔
Upgrading RVM
RVM supports few ways of upgrading itself.
Every month or two a stable release of RVM is created, it includes minor version increase.
每一到兩個(gè)月都會(huì)有一個(gè)正式的穩(wěn)定版沼侣。
To upgrade to the most stable version
升級(jí)到最新的穩(wěn)定版本(譯)
$ rvm get stable
正常情況下的升級(jí),這一句代碼就足夠了歉秫。但是如果有意外情況蛾洛,官方文檔也給出了詳細(xì)步驟。
Is rvm get stable not working? Is rvm get latest telling you "You already have the latest version!" , but you know you don't? Try this:
rvm升級(jí)到穩(wěn)定版沒(méi)效果雁芙?rvm最新版本告訴你“你已經(jīng)是最新版本了”轧膘,但是你知道并不是钞螟?那么試試下面的命令
$ rvm get head
$ rvm reload
$ rvm get stable
If that does not work for you, you can always use the installer to update:
如果這樣任然沒(méi)有效果,你隨時(shí)可以使用安裝程序來(lái)進(jìn)行升級(jí)
$ \curl -sSL https://get.rvm.io | bash -s stable
$ rvm reload
因?yàn)橛玫拇a引用谎碍,所以//后面的被注釋了筛圆,直接復(fù)制整行命令就好
Upgrading to the latest repository source version (the most bugfixes)
升級(jí)到最新源碼版本(修復(fù)最多bug的版本)
$ rvm get head
文檔后面部分還有些操作,但是個(gè)人感覺(jué)并不太需要椿浓,所以就沒(méi)寫(xiě)出來(lái)太援,有需要的可以去看官網(wǎng)文檔。
然后開(kāi)始更新Ruby
首先列出已知的 Ruby 版本
rvm list known
然后指定某個(gè)版本去升級(jí)扳碍,RVM的Github介紹里有這樣說(shuō)
To install ruby you have to call rvm install INTERPRETER[-VERSION] OPTIONS
When no version specified, RVM will install latest stable version or selected interpreter. If you omit to specify interpreter, RVM will assume that you wanted to install MRI ruby. Following examples would have exactly the same effect:
安裝ruby需要用rvm指令
當(dāng)你沒(méi)有指定版本提岔,RVM會(huì)安裝最新的穩(wěn)定版本。如果你缺少了定義詞笋敞,RVM將假設(shè)你想安裝MRI ruby(Matz's Ruby Interpreter-標(biāo)準(zhǔn)版本)碱蒙。下面的例子將會(huì)是一個(gè)效果
rvm install ruby-2.3.1
rvm install ruby-2.3
rvm install 2.3.1
rvm install 2.3
然后根據(jù)需求升級(jí)就行,升級(jí)完后查看版本號(hào)夯巷。
ruby -v
都講到這里了赛惩,cocoapods的升級(jí)也給說(shuō)了把。
一般情況ruby升級(jí)后趁餐,cocoapods也要跟著升級(jí)喷兼。
拿自己的情況舉例子,我升級(jí)完ruby后雷,執(zhí)行
pod --version
會(huì)出現(xiàn)
can't find gem cocoapods (>= 0.a) with executable pod (Gem::GemNotFoundException)
找不到季惯,無(wú)法執(zhí)行,我覺(jué)得原因就是版本有差距臀突。所以需要去升級(jí)cocoapods
網(wǎng)上看到的都是先卸載勉抓,再安裝,我想了想應(yīng)該有升級(jí)的語(yǔ)法候学。
我首先嘗試了
sudo gem update cocoapods
結(jié)果如下
Updating installed gems
Nothing to update
然后我執(zhí)行
sudo gem uninstall cocoapods
結(jié)果是
Gem 'cocoapods' is not installed
很奇怪藕筋,我就執(zhí)行了
which pod
結(jié)果是有路徑的。
算了梳码,不管這個(gè)隐圾,直接執(zhí)行
gem install cocoapods
然后安裝成功。
到此边翁,RVM翎承,Ruby,cocoapods就全部升級(jí)完成了符匾!