4

所以,我很肯定我曾经sudo bundle install绝望地做了一次,我现在明白这是一个禁忌。但是现在,当我尝试运行时bundle install,出现以下错误:

Installing culerity (0.2.12) /Library/Ruby/Site/1.8/rubygems/installer.rb:294:in `generate_bin': You don't have write permissions into the /Library/Ruby/Gems/1.8/bin directory. (Gem::FilePermissionError)
    from /Library/Ruby/Site/1.8/rubygems/installer.rb:196:in `install'
    from /Library/Ruby/Gems/1.8/gems/bundler-1.0.0.rc.6/lib/bundler/source.rb:100:in `install'
    from /Library/Ruby/Gems/1.8/gems/bundler-1.0.0.rc.6/lib/bundler/installer.rb:55:in `run'
    from /Library/Ruby/Gems/1.8/gems/bundler-1.0.0.rc.6/lib/bundler/spec_set.rb:12:in `each'
    from /Library/Ruby/Gems/1.8/gems/bundler-1.0.0.rc.6/lib/bundler/spec_set.rb:12:in `each'
    from /Library/Ruby/Gems/1.8/gems/bundler-1.0.0.rc.6/lib/bundler/installer.rb:44:in `run'
    from /Library/Ruby/Gems/1.8/gems/bundler-1.0.0.rc.6/lib/bundler/installer.rb:8:in `install'
    from /Library/Ruby/Gems/1.8/gems/bundler-1.0.0.rc.6/lib/bundler/cli.rb:217:in `install'
    from /Library/Ruby/Gems/1.8/gems/bundler-1.0.0.rc.6/lib/bundler/vendor/thor/task.rb:22:in `send'
    from /Library/Ruby/Gems/1.8/gems/bundler-1.0.0.rc.6/lib/bundler/vendor/thor/task.rb:22:in `run'
    from /Library/Ruby/Gems/1.8/gems/bundler-1.0.0.rc.6/lib/bundler/vendor/thor/invocation.rb:118:in `invoke_task'
    from /Library/Ruby/Gems/1.8/gems/bundler-1.0.0.rc.6/lib/bundler/vendor/thor.rb:246:in `dispatch'
    from /Library/Ruby/Gems/1.8/gems/bundler-1.0.0.rc.6/lib/bundler/vendor/thor/base.rb:389:in `start'
    from /Library/Ruby/Gems/1.8/gems/bundler-1.0.0.rc.6/bin/bundle:13
    from /usr/bin/bundle:19:in `load'
    from /usr/bin/bundle:19

我尝试删除 ~/.bundle ~/.gem .bundle Gemfile.lock 中的所有内容以及 /Library/Ruby (OSX 10.6) 中对 culerity 或 capybara 的任何引用。我还检查以确保在这个项目中的所有文件上都正确设置了权限(不是 root)。我还清除了 gem 缓存。

我的宝石文件:

source 'http://rubygems.org'

gem 'rails', '3.0.0.rc2'

# Bundle edge Rails instead:
#gem 'rails', :git => 'git://github.com/rails/rails.git'

gem 'pg'

# Use unicorn as the web server
# gem 'unicorn'

# Deploy with Capistrano
# gem 'capistrano'

# To use debugger
gem 'ruby-debug'

# Bundle the extra gems:
# gem 'bj'
# gem 'nokogiri', '1.4.1'
# gem 'sqlite3-ruby', :require => 'sqlite3'
# gem 'aws-s3', :require => 'aws/s3'

# Bundle gems for certain environments:
# gem 'rspec', :group => :test
# group :test do
#   gem 'webrat'
# end

gem 'haml', '3.0.15'
gem 'mogli', '0.0.13' #, :path => "~/Sites/mogli"
gem 'facebooker2', '0.0.4'
gem 'geokit'
gem 'acts_as_restful_list'
gem 'hoptoad_notifier'

group :development, :test do
  gem "rspec-rails", '2.0.0.beta.19'
  gem 'factory_girl_rails'
  gem 'capybara', '0.3.9'
  gem 'database_cleaner'
  gem 'cucumber-rails', '0.3.2'
  gem 'cucumber', '0.8.5'
  gem 'spork'
  gem 'launchy'    # So you can do Then show me the page
end

另外,我的系统上有 rvm,但我正在为这个项目使用系统 ruby​​。

关于导致许可问题的任何想法?当然,我并没有坚持使用sudo bundle install.

谢谢。

4

3 回答 3

3

看起来您正在使用系统的红宝石。你有几个选择:

  • 使用 sudo 在系统范围内安装您的捆绑软件。这可能是来自不同应用程序的宝石冲突的问题。
  • 使用 bundle install --path bundle_dir,它将在 bundle_dir 中安装 gem
  • 使用 rvm (http://rvm.beginrescueend.com),该程序将允许您使用不同的 ruby​​ 版本和不同的 gem 集。
于 2011-05-09T21:44:30.700 回答
0

尝试触摸特定路径中的文件。我猜 OS X 保护这些目录不仅仅是正常的方式?我认为 OS X 支持 ACL 的文件系统,也许你必须看看那里?

于 2010-12-06T14:05:13.177 回答
-3

也许尝试在所有东西上使用 chmod,但看起来你需要将它作为 sudo 运行......不知道为什么这不是一个选项......

于 2010-08-25T18:35:40.600 回答