美文网首页
使用gem命令时出现的几种错误

使用gem命令时出现的几种错误

作者: 傻啦啦了 | 来源:发表于2018-04-12 14:08 被阅读0次

    在终端用gem命令的时候,时常遇到的问题:

    1. 墙墙墙
      通过 gem source 查看你的当前的gem资源库位置,如果你的当前资源库的位置为: https://rubygems.org/,不好意思,你是无法安装成功的,因为这个资源库在国外,所以你需要安装的githug是无法下载成功的,那我们怎么办呢,其实方法很简单,修改当前资源库的位置:

      1- gem sources -r https://rubygems.org/ 删除原来的资源库位置
      2- gem sources -a https://ruby.taobao.org/ 添加新的资源库位置
      3- gem sources -u 更新资源库

    2. 目录权限不够
      报错:
      ERROR: While executing gem … (Gem::FilePermissionError) You don’t have write permissions for the /Library/Ruby/Gems/2.0.0 directory.
      解决:
      sudo chmod 777 /Library/Ruby/Gems/2.0.0 修改权限

    3. gem需要更新
      报错:
      ERROR: While executing gem … (Errno::EACCES)
      Permission denied - /Library/Ruby/Gems/2.0.0/cache/i18n-0.7.0.gem
      解决:
      gem update –system

    4. 如果还是不行,又想用gem安装怎么办?sudo gem install….

    相关文章

      网友评论

          本文标题:使用gem命令时出现的几种错误

          本文链接:https://www.haomeiwen.com/subject/noixkftx.html