Gem 安装寻找映射驱动器
在网络上,我的主文件夹被设置为分配了字母 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜这不是最好的解决方案,但我修改了 ruby>bin 文件夹中的 gem.bat 。我将现有命令包装为:
这会将主目录的环境变量从 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:
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