我想使用標準的Matrix ruby庫。我曾嘗試include Matrix
,但返回未初始化常數,所以我想我必須把我的Gemfile使用Matrix標準Ruby庫的難度
gem 'rubysl-e2mmap', '~> 2.0.0'
gem 'rubysl-matrix', '~> 2.1'
當我捆綁安裝,它工作正常,但是當我運行bundle exec rails c
我得到以下錯誤:
Could not find rubysl-e2mmap-2.0.0 in any of the sources
我該如何解決這個問題?
'require'matrix'' should do the trick,note that you give'require' a string。 –
我實際上是在做'''包括Matrix''',但是'''需要'Matrix'''確實有竅門謝謝。我將編輯我對'''include Matrix'''的回答,以便更廣泛地使用它。 – Obromios