Skip to content

Latest commit

 

History

History
21 lines (11 loc) · 581 Bytes

A2_troubleshooting.md

File metadata and controls

21 lines (11 loc) · 581 Bytes

Appendix - Troubleshooting

Running the (Ruby) Sample Code / Scripts

Q: I try to run a script and I get an "cannot load such file -- pixelart (LoadError)". Could somebody please help me out getting the script to run?

A: The "cannot load such file -- pixelart (LoadError)" error tells you that you need to install the pixelart package called gems in rubyland.

Try:

 $ gem install pixelart

To check all gems (ruby packages) that you have installed locally try:

 $ gem list

Now retry running your (ruby) script