Gem 安装寻找映射驱动器

发布于 2024-11-14 20:55:50 字数 141 浏览 1 评论 0原文

在网络上,我的主文件夹被设置为分配了字母 H 的映射驱动器。执行“gem install rake”时出现错误,无法找到 H。该驱动器映射为 H:。我在该文件夹中看到 .gems 文件夹,而 ruby​​ 安装位于 c: 的根目录中。我需要更改什么才能安装 gems?

On the network my home folder is set as a mapped drive assigned the letter H. When executing "gem install rake" gets an error that H can't be found. The drive is mapped as H:. I see the .gems folder in that folder while the ruby install is in the root of c:. What do I need to change to have the ability to install gems?

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

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

发布评论

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

评论(1

我偏爱纯白色 2024-11-21 20:55:50

我猜这不是最好的解决方案,但我修改了 ruby​​>bin 文件夹中的 gem.bat 。我将现有命令包装为:

SET _HOMEDIRECTORY=%HOMEDIRECTORY%
SET HOMEDIRECTORY=C:
[existing code]
SET HOMEDIRECTORY=%_HOMEDIRECTORY%

这会将主目录的环境变量从 H: 更改为 C:,安装,然后将其返回到 H:。

我从这个帖子中得到了这个想法: http://www.ruby-forum.com/topic/207694

I am guessing this is not the best solution, but I modified gem.bat in my ruby>bin folder. I wrapped the existing command with:

SET _HOMEDIRECTORY=%HOMEDIRECTORY%
SET HOMEDIRECTORY=C:
[existing code]
SET HOMEDIRECTORY=%_HOMEDIRECTORY%

This changes the environment variable of the home directory from H: to C:, installs, then returns it back to H:.

I got the idea from this thread: http://www.ruby-forum.com/topic/207694

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