Arc Forumnew | comments | leaders | submitlogin
7 points by fallintothis 5407 days ago | link | parent

The link to "Other Versions" on PLT's main download page is a bit non-obvious, but it's there: http://download.plt-scheme.org/all-versions.html

I'm guessing v372 for Ubuntu probably works on Debian, since they're largely similar. If it doesn't, I've been running v360 on squeeze and haven't noticed any issues with arc3. Failing either of these, you could build v372 yourself.

Once MzScheme is installed, there's not much to do about Arc that's not already on http://www.arclanguage.org/install. You might consider aliasing it in your .bashrc (or whatever), and I recommend using rlwrap. e.g.,

  alias arc='cd ~/arc3; rlwrap mzscheme -m -f as.scm'
Good luck!


2 points by palsecam 5406 days ago | link

I confirm: v372 for Ubuntu works also with Debian Squeeze (testing) i686, without modification (I run it).

Direct link: http://download.plt-scheme.org/plt-372-bin-i386-linux-ubuntu....

Actually it's not a .deb package to install with dpkg, it's a self-installer.

-----

2 points by edeion 5406 days ago | link

Thanks palsecam! (btw, are you French?)

I would add (for other potential readers) that it is a very neat self-installer that makes it possible to install in user directory (so that it doesn't spread on the whole system).

What's more, this i386 version worked smoothly despite my amd64 kernel.

-----

1 point by palsecam 5406 days ago | link

Yes I'm French. How did you guess? The username?

Good to know it works without problem on x64. Thanks for this precision and good luck with Arc!

-----

1 point by edeion 5405 days ago | link

Right, the username. Someone who figured out I was French (a space slipped before a question mark) on a lisp-related IRC chan told me there were many French Lispers. I wonder how many we actually are.

-----

1 point by conanite 5405 days ago | link

Hey, I live in Paris ... are any of you nearby? Who wants to meet up in the real world?

-----

2 points by edeion 5405 days ago | link

In Paris too, and I'd be glad to meet some other lispers. Especially since I'm still in the early process of learning Lisp. But I guess we should find another way of dealing with IRL meetings than the forum...

-----

1 point by conanite 5405 days ago | link

to borrow an idiom, (prn "conan" #\@ "conandalton.net")

-----

1 point by palsecam 5405 days ago | link

Mine is in my profile.

-----

4 points by Arubis 5401 days ago | link

If you're running your 'arc' alias from TextMate or the like, this won't much matter, but if you're just executing in Bash, something like:

  alias arc='pushd ~/arc3; rlwrap mzscheme -m -f as.scm ; popd'
...will return you to the directory from whence you came. Which is nice.

-----

1 point by palsecam 5400 days ago | link

Oh yes, I didn't remember of pushd/popd!

Really handy in this case.

Thanks for the tip!

-----

2 points by edeion 5407 days ago | link

Great! Thank you so much, I indeed missed the link on PLT's download page. I'll try it as soon as I'm back home (I can't wait). And thanks for the rlwrap tip too!

-----