我正在使用Arch Linux并安装了Ruby(这是版本2.0.0)。
当我安装Ruby时,它说我应该添加:
$(ruby -rubygems -e "puts Gem.user_dir")/bin
到我的路径,我把它添加到.bashrc
当我尝试gem安装rails或任何其他gem时,它会给出错误:无法构建gem原生扩展。这是完整的错误:
ERROR: While executing gem ... (Gem::FilePermissionError)
You don't have write permissions for the /usr/lib/ruby/gems/2.0.0 directory.
[alexander@localhost ~]$ sudo gem install rails --no-user-install
Building native extensions. This could take a while...
ERROR: Error installing rails:
ERROR: Failed to build gem native extension.
/usr/bin/ruby extconf.rb
creating Makefile
make "DESTDIR="
sh: make: command not found
Gem files will remain installed in /usr/lib/ruby/gems/2.0.0/gems/atomic-1.1.10 for inspection.
当我看到这个错误时,我看到人们通过安装ruby-dev软件包来解决这个错误,但是这对于Arch Linux来说并不存在。我可以尝试其他任何选项吗?
提前致谢!
答案 0 :(得分:6)
要构建本机扩展,您需要c ++ - 编译器和工具。这说得很清楚:
sh: make: command not found
除make
实用程序外,您显然需要编译器本身(例如gcc
)和公司。因此,
sudo apt-get install gcc
会做到这一点。顺便说一句,上面正确建议的RVM方式肯定也需要构建工具。
答案 1 :(得分:1)
尝试此命令
sudo apt-get install ruby1.9.1-dev build-essential
sudo apt-get install ruby-compass