尝试卸载 imagemagick 但所有 gems 都安装在该目录中

发布于 2024-12-11 05:45:57 字数 189 浏览 0 评论 0原文

我在我的 Rails 应用程序中安装了 imagemagick,现在我尝试卸载它,我意识到所有 gem 都位于该目录中。一旦我删除该目录,它就会破坏我的应用程序。当我在删除目录后尝试再次捆绑安装 gems 时,它会创建另一个 imagemagick 文件夹并将所有 gems 放入其中。看来 imagemagick 在我的应用程序中安装了一些东西。我该如何摆脱它?

I installed imagemagick in my rails app and now that I am trying to uninstall it, I realize all gems are located within that directory. As soon as I remove the directory it breaks my app. When I try to bundle install the gems again after removing the directory, it creates another imagemagick folder and puts all the gems in there. It seems imagemagick installed stuff all over my app. How do I get rid of it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寄风 2024-12-18 05:45:57

有同样的问题。
安装到 project/imagemagick 文件夹中的 gems

我所做的是:

  1. 转到 imagemagic/ruby/1.8/
  2. cp -rvf * ~/.rvm/gems/ruby-1.8.7@mygems/ (将 imagemagick 文件夹中的所有 gems 复制到正确的位置)目的地)
  3. 删除了 imagemagick 文件夹
  4. 删除了也在我的项目文件夹中创建的 .bundle 文件夹

这达到了目的,但是我不知道如果我通过捆绑程序更新 gem 会发生什么。并且不知道为什么它会发生在第一位!

祝你好运,

格热戈日

Had the same issue.
The gems where installed into project/imagemagick folder

what I did was:

  1. go to imagemagic/ruby/1.8/
  2. cp -rvf * ~/.rvm/gems/ruby-1.8.7@mygems/ (copied all gems from imagemagick folder into proper destination)
  3. removed imagemagick folder
  4. removed .bundle folder which was also created in my project folder

And that did the trick, however I do not know what will happen if I will update gem via bundler. And have no idea why it happened on first place!

Good Luck,

Grzegorz

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文