Michalis
Michalis

Reputation: 3

Error when installing rails on windows

i just install ruby on windows system

C:\Users\PC>ruby --version
ruby 1.9.2p290 (2011-07-09) [i386-mingw32]

but when i try to install rails

C:\Users\PC>gem install rails --include-dependencies
INFO:  `gem install -y` is now default and will be removed
INFO:  use --ignore-dependencies to install only the gems you list
ERROR:  While executing gem ... (Encoding::ConverterNotFoundError)
    code converter not found (UTF-16LE to IBM737)

could you please help me...

i have english version of windows 7 Ultimate with greek language installed

Upvotes: 0

Views: 1339

Answers (2)

PeppyHeppy
PeppyHeppy

Reputation: 1355

You might consider using the Rails Installer for windows if you can use Ruby 1.8.7. It will install ruby and rails and other dependencies for you. There are screencasts and other help as well.

If you need ruby 1.9.2+, then it looks like you might be out of luck unless you upgrade to ruby 1.9.3. You can read about it here.

Good luck!

Upvotes: 1

Jeremy Roman
Jeremy Roman

Reputation: 16345

Try changing your Command Prompt code page:

chcp 850

Upvotes: 0

Related Questions