ERROR: Could not find a valid gem 'redis' (>= 0) in any repository
程序员文章站
2024-01-15 08:19:40
...
在运行
gem install redis
时,出现
ERROR: Could not find a valid gem 'redis' (>= 0) in any repository
一部分原因是gem source应该包含
https://rubygems.org
利用
gem sources #显示已有source
若不含有
https://rubygems.org
则用一下命令加入
gem sources -a https://rubygems.org
再次运行命令
gem install redis
即可。