Arc Forumnew | comments | leaders | submitlogin
Er.. can't install?
1 point by godtvisken 5948 days ago | 3 comments
I want to play with arc, but i don't think the install worked.

I installed Mzscheme 352 to a local directory

/home/sven/reckoning/arc/

The arc files are in

/home/sven/reckoning/arc/arc0

So then i cd into arc/bin/ and try:

$ ./mzscheme -m -f ../arc0/ac.scm

Instead of an arc> prompt, i get only the default mzscheme prompt of >

Thanks if anyone can help me



1 point by sophacles 5948 days ago | link

Not certain if this is will work but:

cd into $path/to/arc/arc0

$ ../bin/mzscheme -m -f ac.scm

I'm pretty sure that arc is looking in . for the rest of its loads.

Best of luck, Erich

-----

2 points by chaos 5948 days ago | link

as.scm, not ac.scm

   mzscheme -m -f as.scm

-----

1 point by godtvisken 5948 days ago | link

Heh, such a silly mistake. Thank you

-----