ruby gem install rails 错误解决】的更多相关文章

最近打算看ruby. 今天用命令gem install rails的时候碰到这样的错误提示: ERROR:  Error installing XXXXXXXXXXX:            The 'XXXXXXXXXXXX' native gem requires installed build tools.         Please update your PATH to include build tools or download the DevKit    from 'http:…
gem sources #查看目前的源 gem sources --remove https://rubygems.org/ gem sources -a https://ruby.taobao.org/ 再执行 gem install rails…
这两天在我的mac机上安装Ruby On Rails,感觉很爽,似乎在使用一个Windows和Linux的结合体,要界面有界面,要命令行有命令行. 不过安装Ruby On Rails的过程中遇到一个问题,花了点时间.找到问题根源后发现自己挺可笑的,所以记录在这里,希望大家不要象我这么傻. 问题的现象是我安装Ruby On Rails的时候系统没有响应.在安装完Ruby 2.0.0后运行"gem install rails"命令开始安装Rails,系统死活没有响应,于是Ctr+C 中断安…
解决方案: gem install rails -V ....其实他本身在后台运行,白白的给他中断好多次,用-V这个选项就可以直接回显信息了…
解决方案为,不要用sudo gem install就好了,卧槽…
ERROR:  While executing gem ... (Gem::FilePermissionError)     You don't have write permissions for the /Library/Ruby/Gems/2.0.0 directory. 原因是没有写的权限 解决办法 sudo gem install dryrun…
在虚拟机上执行gem install redis 没有反应: 百度方法如下: #移除官方镜像,增加淘宝镜像 gem sources --add https://ruby.taobao.org/ --remove https://rubygems.org/ 然后,再次用gem install redis 就可以了.…
转自:http://my.oschina.net/moks/blog/200344 [摘要]Because libv8 is the interface for the V8 engine used by therubyracer, you may need to use libv8, even if you have V8 installed already. If you wish to use your own V8 installation, rather than have it bu…
今天安装mongoose一直报错,上图 具体的错误记录: info it worked if it ends with ok verbose cli [ 'C:\\Program Files\\nodejs\\node.exe', verbose cli 'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js', verbose cli 'install', verbose cli 'mongoose' ] info info…
一.安装Rvm 1.下载安装Rvm $ curl -L https://get.rvm.io | bash -s stable 此时可能出现错误:"gpg: 无法检查签名:找不到公钥" 解决方法: $ gpg --keyserver subkeys.pgp.net --recv 4F6C1E86 //下划线上应改为你所缺少的公钥 $ gpg --export --armor 4F6C1E86 | sudo apt-key add - //下划线上应改为你所缺少的公钥 2.载入Rvm环境…