Difference between revisions of "Cannot load such file -- (...) (LoadError)"

From Test Automation Wiki
Jump to: navigation, search
 
Line 1: Line 1:
 
The error message "Cannot load such file -- filename" 9 our of 10 times means that you're trying to use a [[Gem]] that you have not yet installed.
 
The error message "Cannot load such file -- filename" 9 our of 10 times means that you're trying to use a [[Gem]] that you have not yet installed.
  
To install a gem, open your console and write:
+
To install a gem, open CMD and write: <code>gem install <gemname></code>
<source>
 
gem install <gemname>
 
</source>
 
  
 
[[Category:FAQ]]
 
[[Category:FAQ]]

Latest revision as of 10:16, 14 March 2017

The error message "Cannot load such file -- filename" 9 our of 10 times means that you're trying to use a Gem that you have not yet installed.

To install a gem, open CMD and write: gem install <gemname>