mac 必备开发环境安装homebrew RVM

独自空忆成欢 提交于 2020-08-16 03:57:56

homebrew

先在浏览器输入这个地址:

https://raw.githubusercontent.com/Homebrew/install/master/install

看是否能打开,不能打开就是你网络有问题,fq。

把这个网页保存名为brew_install.rb的文件,保存的位置你随便,只要自己能找到。

终端输入

ruby brew_install.rb

 

ruby是mac自带的 所以不用装了 ruby不行就换成bash 试下

 

安装RVM

RVM安装页面

1.安装mpapis公钥。但是,正如安装页面所记录的,您可能需要gpg。Mac OS X不附带gpg,因此在安装公钥之前,您需要安装gpg。我用Homebrew安装了gpg :

 

brew install gnupg 

2.安装完gpg之后,你可以安装mpapis公钥:

 

gpg --keyserver hkp://pgp.mit.edu --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB

3.安装最新版本的Ruby的RVM

 

curl -sSL https://get.rvm.io | bash -s stable --ruby

上面第三部的命令。。你会发现你不行

解决方法

更改hosts文件。
1.mac终端中输入: sudo vi /etc/hosts
2.然后加上下面的这些IP地址配置

52.74.223.119 github.com
192.30.253.119 gist.github.com
54.169.195.247 api.github.com
185.199.111.153 assets-cdn.github.com
151.101.76.133 raw.githubusercontent.com
151.101.108.133 user-images.githubusercontent.com
151.101.76.133 gist.githubusercontent.com
151.101.76.133 cloud.githubusercontent.com
151.101.76.133 camo.githubusercontent.com
151.101.76.133 avatars0.githubusercontent.com
151.101.76.133 avatars1.githubusercontent.com
151.101.76.133 avatars2.githubusercontent.com
151.101.76.133 avatars3.githubusercontent.com
151.101.76.133 avatars4.githubusercontent.com
151.101.76.133 avatars5.githubusercontent.com
151.101.76.133 avatars6.githubusercontent.com
151.101.76.133 avatars7.githubusercontent.com
151.101.76.133 avatars8.githubusercontent.com

然后再执行下就好了

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!