我想在我的项目中使用paperclip。所以我把它添加到我的gem文件中:
gem 'paperclip'
如果我现在运行bundle install,我会收到以下错误消息:
Fetching http://github.com/thoughtbot/paperclip.git
remote: Counting objects: 5249, done.
remote: Compressing objects: 100% (2315/2315), done.
remote: Total 5249 (delta 3596), reused 4384 (delta 2817)
Receiving objects: 100% (5249/5249), 804.81 KiB | 215 KiB/s, done.
Resolving deltas: 100% (3596/3596), done.
error: unable to create file test/fixtures/question?mark.png (Invalid argument)
有人知道如何解决此错误吗?
P.S。:我在跑步时遇到同样的错误:
rails plugin install git://github.com/thoughtbot/paperclip.git
答案 0 :(得分:1)
我遇到与您相同的问题,我目前正在查看此页面上的解决方案:https://github.com/thoughtbot/paperclip/pull/621
编辑:好消息,大家好!这似乎对我有用(我使用的是Windows 7)。 tl; dr:将paperclip保存为计算机上的目录并在gemfile中引用它。然后使用捆绑安装。gem 'paperclip', :path => 'vendor/gems/paperclip'
答案 1 :(得分:0)
在gemfile中尝试gem“paperclip”,“〜> 2.4.5”