How to switch bundler version?

久未见 提交于 2021-02-20 06:53:52

问题


I thought the below command would switch bundler installation, but it actually raised an error.

$ bundle _1.10.6_ -v
Could not find command "_1.10.6_".

$ bundle -v
Bundler version 1.13.6

$ gem list | grep bundle
bundler (1.13.6, 1.10.6)

What should I do?


回答1:


To use different gem versions, you could use this pattern: your-gem _version_. For example, bundle _1.10.6_ -v.

Hope that will help.



来源:https://stackoverflow.com/questions/41500197/how-to-switch-bundler-version

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!