powershell - Running raco on the Windows command line -
i trying create stand-alone racket executable on windows platform. how go running raco windows command line? i'm not familiar it.
if utilize documentation , come in next command cmd.exe
:
raco exe --gui main.rkt
cmd.exe
tells me:
'raco' not recognized internal or external command, operable programme or batch file.
substituting in raco.exe
tells me same thing.
i tried typing:
'c:\program files\racket\raco.exe' exe --gui .\main.rkt
into powershell
, gave me unexpected token 'exe' in look or statement
error.
for first problem: need add together windows' %path% (an environment variable) path executable. sec problem: check right syntax exe
command, and/or "--gui" modifier, they're beingness misused. instance, seek after solving first problem:
$ raco.exe exe main.rkt
the above create executable main.exe
file.
windows powershell scheme racket cmd
No comments:
Post a Comment