我正在尝试运行"如何运行自己的比特币套利机器人“中的脚本。
你可以试着自己去做,然后测试结果。
我完全遵循它,但是,当我打开程序,我得到了这个,我不知道如何修复它。
c:\Ruby200-x64\devkit>rbtc_simple
C:/Ruby200-x64/lib/ruby/2.0.0/rubygems/core_ext/kernel_require.rb:55:in `require
': cannot load such file -- bundler (LoadError)
from C:/Ruby200-x64/lib/ruby/2.0.0/rubygems/core_ext/kernel_require.rb:5
5:in `require'
from C:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/rbtc_arbitrage_simple-2.1.1
/lib/rbtc_arbitrage.rb:1:in `<top (required)>'
from C:/Ruby200-x64/lib/ruby/2.0.0/rubygems/core_ext/kernel_require.rb:5
5:in `require'
from C:/Ruby200-x64/lib/ruby/2.0.0/rubygems/core_ext/kernel_require.rb:5
5:in `require'
from C:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/rbtc_arbitrage_simple-2.1.1
/bin/rbtc_simple:4:in `<top (required)>'
from C:/Ruby200-x64/bin/rbtc_simple:23:in `load'
from C:/Ruby200-x64/bin/rbtc_simple:23:in `<main>'我正在运行64位Ruby和64位devkit。
我在C:\Ruby200 200\bin中运行了git init,我认为它是正确的文件夹。我怎么知道在哪里运行呢?
发布于 2014-07-08 20:56:44
如您的错误消息所示,您缺少了bundler gem:
require: cannot load such file -- bundler
要解决这个问题,您可以将绑定程序安装到您的gems:gem install bundler
https://stackoverflow.com/questions/24641291
复制相似问题