Cannot source RVM files because of PowerPC architecture

别说谁变了你拦得住时间么 提交于 2021-02-10 06:56:15

问题


I ran the railsinstaller from railsinstaller.org on my OS X 10.7.5, then ran into a few issues with RVM:

1) First, I got "RVM: command not found". So I created the .bash_profile and added

[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"

2) Restarted the terminal, but still getting the same error message. I checked the .rvm folder to see if it's properly installed; it seems to be missing the "scripts" folder. So I ran

\curl -L https://get.rvm.io | bash -s stable

3) Then I get this:

Launch of "gtar" failed: the PowerPC architecture is no longer supported. Could not extract RVM sources.

Base on my research, this means that I need an Intel 64-bit machine. But I double checked and that is indeed what I have (Intel Core Duo 2). I've been spending hours trying to find more relevant documentations but to no avail, so I'm really stuck as I need the RVM for my projects.

I would really appreciate any help! Thank you!


回答1:


In my research it appears that Jewelry Box does not support newer versions of RVM. I don't actually know if this is the issue that you're running into, but it seems likely. I'd recommend uninstalling Jewelry Box and reinstalling RVM.

To reinstall RVM, you'll need to completely remove RVM and then use the same string you used before, but this time add --rails at the end, so you get rails as well.

\curl -L https://get.rvm.io | bash -s stable --rails

The other parts of rails installer should still be there like git and sm.

Jewelry Box will no longer be useful, but for that I highly recommend getting to know Bundler. The de facto standard for working with ruby gems. It'll be more useful when using rails and will be less likely to run into dependency issues.

Welcome Rails as well, stick with it and you'll be a pro in no time. I highly recommend taking a look at Rails Casts. Very good short and digestable videos tutorials for rails.

Hope that helps.



来源:https://stackoverflow.com/questions/14798260/cannot-source-rvm-files-because-of-powerpc-architecture

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!