rbenv install - executable host ruby is required

前端 未结 2 1480
醉梦人生
醉梦人生 2021-01-21 22:50

I am trying to install ruby 2.2.0-dev using rbenv into my Ubuntu 13.10 development laptop. I have removed all previous ruby and gem installations. Now, when I try to install rub

相关标签:
2条回答
  • 2021-01-21 23:44

    tl;dr

    you need a non-dev version (i.e. 2.2.0) installed (also using rbenv) before you can have the dev version.


    As of rbenv 1.0.0 you don't need to have ruby from the repository (e.g. using apt-get) installed on your machine to be have any *-dev version installed. However, it is required to have a non-dev version already installed (through rbenv) before installing any *-dev version.

    0 讨论(0)
  • 2021-01-21 23:48

    You can't use rbenv without a native installation of ruby in the machine. You should install ubuntu's ruby (sudo apt-get install ruby) so rbenv will have a base version to work with. If you can run ruby -v then you're all set.

    0 讨论(0)
提交回复
热议问题