At 00:42 05/03/2002 -0500, Marc S Weintraub wrote:
>I use a PC with Win98 SE and ActivePerl 5.6.1 Build 630 for my Perl 
>development work. Whenever I try to run a perldoc query I see a slight 
>pause followed by "Bad command or file name." What have I failed to 
>install or configure? How do I fix it?

If you type at the command line

         perl -v

do you get version info on your  perl?

If no, then the perl "bin" folder (where the binaries are)  is not on your 
PATH - not in your path environment variable.

Edit C:\Autoexec.bat and add at the end:

set PATH = %PATH%;c:\perl\bin;

where 'c:\perl\bin' is the path to the 'bin' folder of your perl installation.

the %% around PATH indicate to the OS to quote whatever was in PATH already.

If you run out environment space, let us know!

hth
lee

_______________________________________________
ActivePerl mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to