Gem Command not found

前端 未结 14 1114
春和景丽
春和景丽 2021-01-30 08:21

I have installed gem on Ubuntu 10.10 32 bit with

apt-get install gem -y

But when I try to run

gem install something.gem


        
相关标签:
14条回答
  • 2021-01-30 08:45

    The following command will give you the list of files that the gem package installed:

    dpkg -L gem
    

    that should help you troubleshoot.

    0 讨论(0)
  • 2021-01-30 08:47

    Are you wanting ruby gems? If so, you need to install libgemplugin-ruby and then the ruby 'gem' program will be in your path:

    aptitude install libgemplugin-ruby
    
    0 讨论(0)
提交回复
热议问题