bundle install --without development test --mirror 'https://rubygems.org' --taobao-source Unknown switches "--mirror", "--taobao-source"报错
时间: 2023-10-06 20:06:03 浏览: 281
如果你使用的是较老版本的 Bundler,可能不支持 `--mirror` 和 `--taobao-source` 等参数。你可以尝试使用以下命令:
```
bundle config mirror.https://rubygems.org https://gems.ruby-china.com
bundle install --without development test
```
第一条命令会配置 RubyGems 镜像源为 Ruby China 的镜像,第二条命令则会安装依赖包。这样做也可以加快 Gem 包的下载速度。如果你想使用其他的镜像源,可以将 `https://gems.ruby-china.com` 替换为你想要使用的镜像源即可。
相关问题
bundle config mirror.https://rubygems.org https://gems.ruby-china.combundle install --without development test 替换成这个也下载不了
如果替换了镜像源仍然无法下载,可能是其他原因导致的。你可以尝试以下步骤来解决问题:
1. 检查网络连接是否正常,确保可以访问互联网;
2. 确认你的 RubyGems 版本是否较旧,如果是,可以尝试更新 RubyGems;
3. 清除本地 Gem 缓存,可以使用命令 `gem clean` 来清除;
4. 重新安装 bundler,可以使用命令 `gem install bundler` 来重新安装。
如果以上步骤仍然无法解决问题,你可以尝试搜索相关错误信息或者在 RubyGems 的官方论坛上发帖求助。
Cannot get https://gerrit.googlesource.com/git-repo/clone.bundle
您的第一个问题似乎是关于无法获取 https://gerrit.googlesource.com/git-repo/clone.bundle 的问题。这个错误通常出现在使用 Git Repo 工具时。可能是由于网络连接问题或远程服务器故障引起的。您可以尝试使用以下命令来解决这个问题:
```
git config --global url."https://".insteadOf git://
```
这将把 Git 的默认传输协议从 git:// 改为 https://,这个方法通常可以解决这个问题。如果问题仍然存在,您可以尝试检查您的网络连接或联系 Git Repo 的开发者以获取更多帮助。
阅读全文