[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Try to run ruby on windowsxp

Mohsen Akhavan

1/3/2006 6:48:00 AM

Hello all
I tired to run this program on the command prompt of windows
Xp
Puts â??Hello worldâ? and I encounter the following error:

â??Puts is not recognized as internal or external command.
Operable program or batch file â??

Please help me ,sincerely yours Mohsena

--
Posted via http://www.ruby-....


4 Answers

james_b

1/3/2006 7:44:00 AM

0

Mohsen Akhavan wrote:
> Hello all
> I tired to run this program on the command prompt of windows
> Xp
> Puts “Hello world” and I encounter the following error:
>
> “Puts is not recognized as internal or external command.
> Operable program or batch file “
>
> Please help me ,sincerely yours Mohsena
>


The Windows command shell expects to be given Windows shell commands,
not Ruby commands.

Try

ruby -e 'puts "Hello, world!"'

(You need to give the name of the ruby interpreter so Windows knows what
to execute, and the tell Ruby that it should execute the string that
follows. That's what the -e is for. )

James

--

http://www.ru... - Ruby Help & Documentation
http://www.artima.c... - Ruby Code & Style: Writers wanted
http://www.rub... - The Ruby Store for Ruby Stuff
http://www.jame... - Playing with Better Toys
http://www.30seco... - Building Better Tools


Jellen

1/3/2006 7:58:00 AM

0

And you should use 'puts' instead of 'Puts'.

Jules

1/3/2006 5:06:00 PM

0

Have you installed Ruby? Use the one-click installer:
http://rubyforge.org/frs/?gr...

And create a new file and put this in it:

puts "Hello World!"
gets

and save and double-click it.

--
Posted via http://www.ruby-....


Mr Risek

1/3/2006 7:16:00 PM

0

The program you're using, "cmd" is the Windows command prompt. When you
type in a command, it checks from two places whether that command is
valid:

The first place is a set of commands that are inside of the program
(such as "dir", "cd", et al). These commands let you look superficially
through the filesystem.

The second place is designated by what is called a "PATH" environment
variable. This tells the program "cmd" where to look in the filesystem
for the programs you try to run.

The program "ruby" is not in your "PATH". That means that the command
prompt cannot find the program. To change this you must first know where
you installed ruby to. In the below instructions, it is assumed you
installed ruby to "c:\ruby\".

Choice 1: Add the ruby binary to your PATH environment variable

To change your path variable, hold down the "windows key" and press the
"pause break" key. It'll open up the system properties dialog. Now click
on the "Advanced" tab. There should be an "Environment Variables"
button. Click on it and look for "Path". Then click "Edit". For the
variable value, add on to the end ";c:\ruby\;c:\ruby\bin\" without the
quotes. You need the semicolons to separate the two.

Choice 2: Write a batch file (.bat file) to put somewhere in your PATH
to run Ruby without changing your PATH environment variable

If you don't want to add Ruby to your PATH for whatever reason, you can
just put a batch file in a place that is already in your PATH. The
directory "c:\windows\system32\" should be in your PATH already, so go
there and create a text document with notepad.

In the text window put the line "c:\ruby\bin\ruby.exe" without quotes
and save it as "ruby.bat" in the "c:\windows\system32" directory. Make
sure there's no .txt on the end of "ruby.bat". Now when you do what
James Britt told you above it will work.


--
Posted via http://www.ruby-....