[Tutor] win98 path

Danny Yoo dyoo@hkn.eecs.berkeley.edu
Sat, 16 Jun 2001 11:59:22 -0700 (PDT)


On Sat, 16 Jun 2001, Jordan Stanley wrote:

> with a lot of the examples i have the path is for linux which i dont
> have installed at the moment.
> 
> when it says on the first line #/usr/src et cetera
> 
> in windblows do i change that to #/c:/python21/ ???

Hello Jordan,

If you're on a Windows system, you don't need to worry about the first
line.  The line:

###
#!/usr/local/bin/python
###

is called a "magic line", and Unix systems look at it when we want to make
our scripts executable as programs.  Windows doesn't do executables this
way (it does the .EXE way), so this top line isn't effective on a Windows
system.

By the way, which examples are you looking at?


Talk to you later!