Mac OS X Cl Capitan 设置HOMEBREW_GITHUB_API_TOKEN

在Mac OS X El Capitan 中使用Homebrew时报如下错误

Error: GitHub API rate limit exceeded for [IP地址]. (But here's the good news: Authenticated requests get a higher rate limit. Check out the documentation for more details.)
Try again in 36 minutes 22 seconds, or create a personal access token:
  https://github.com/settings/tokens/new?scopes=&description=Homebrew
and then set the token as: HOMEBREW_GITHUB_API_TOKEN

解决方案:

1、登录github.com,如果没有账号,需要注册一个

2、点击右上角的你个人的图标下拉框,然后选择“settings”,在左侧选择“Personal access tokens”,点击右上角的“Generate new token”或者直接输入https://github.com/settings/tokens/new

3、在“Token description”中输入:Homebrew

4、点击“Generate token”按钮

5、在新的页面中记录下token值。

6、在Mac终端下输入:export HOMEBREW_GITHUB_API_TOKEN=您的token值

7、回车

设定完成!

你可能感兴趣的:(homebrew)