Arc Forumnew | comments | leaders | submitlogin
3 points by Pauan 4511 days ago | link | parent

"ac.scm:1323:9: racket/unsafe/ops: standard-module-name-resolver: collection not found: #<path:racket/unsafe> in any of: (#<path:/home/user/.plt-scheme/4.2.1/collects> #<path:/usr/lib/plt/collects>) in: racket/unsafe/ops"

The solution is simple: use Racket. You see, mzscheme 4 doesn't support any Racket stuff. So when trying to load a Racket library (in this case, "unsafe") it won't be able to find it.

If Anarki wants to support people using mzscheme 4, this line should be changed:

https://github.com/nex3/arc/blob/76a61293bc7bc49ef8b57641ad5...



1 point by darjeeling 4511 days ago | link

The debian package description of racket (http://packages.debian.org/sid/racket) says that the package was previously plt-scheme. So, I seem to be using it :(

which package provides racket in Ubuntu/Debian systems? I am running the October version on a Debian 6 system and it is running fine. apt-cache search racket returns no relevant package.

-----

2 points by rocketnia 4510 days ago | link

You mentioned you used the command "mzscheme -f as.scm". If you change that to "racket -f as.scm", does it make any difference?

-----