热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

“gemupdate-在Debian上禁用系统”错误-“gemupdate--systemisdisabledonDebian”error

WhenItrytoupdaterubygems(byrunninggemupdate--system)Igetthiserror:当我尝试更新rubygems(通过

When I try to update rubygems (by running 'gem update --system') I get this error:

当我尝试更新rubygems(通过运行'gem update --system')时,我收到此错误:

ERROR:  While executing gem ... (RuntimeError)
gem update --system is disabled on Debian. RubyGems can be updated using the official Debian repositories by aptitude or apt-get.

Any idea what might be wrong and how I can fix it?

知道什么可能是错的,我怎么能解决它?

3 个解决方案

#1


12  

There are two ways: get rid of the debian ruby package and install ruby from source, or you can follow the instrucions given to you:

有两种方法:摆脱debian ruby​​包并从源代码安装ruby,或者你可以按照给你的指示:

RubyGems can be updated using the official Debian repositories by aptitude or apt-get.

可以使用aptitude或apt-get使用官方Debian存储库更新RubyGems。

the rubygems with debian is managed by apt, and so you need to update it with it. If you don't want to, you need to install ruby on you own, without using apt. Or at least you need to install ruby-gems on you own. Try this:

debian的rubygems由apt管理,所以你需要用它来更新它。如果你不想,你需要自己安装ruby,而不使用apt。或者至少你需要自己安装ruby-gems。尝试这个:

[sudo] apt-get remove rubygems
wget http://production.cf.rubygems.org/rubygems/rubygems-1.3.7.tgz
tar xzf rubygems-1.3.7.tgz
cd rubygems-1.3.7
[sudo] ruby setup.rb

#2


1  

Just from reading the error message, I'd suggest updating RubyGems via apt (sudo apt-get install rubygems) instead of from within RubyGems.

只是阅读错误消息,我建议通过apt(sudo apt-get install ruby​​gems)而不是RubyGems中更新RubyGems。

#3


0  

in debian wheezy
  • remove rubygems

    删除rubygems

    apt-get remove rubygems

  • get a source

    得到一个来源

    wget http://production.cf.rubygems.org/rubygems/rubygems-1.8.7.tgz

  • uncompress source

    解压缩源

    tar zxvf rubygems-1.8.7.tgz

  • move directory

    移动目录

    cd rubygems-1.8.7

  • run setup.rb with ruby

    用ruby运行setup.rb

    ruby setup.rb

  • update system

    更新系统

    gem update --system

then it'll installing newest versionand

然后它将安装最新的版本和


推荐阅读
author-avatar
书友76086805
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有