1. Installing Euphoria
- Posted by Tamar Curry <streiffus at yahoo.com> Jul 26, 2004
- 614 views
I'll admit I'm pretty much a linux newbie. I'm running on Lindows OS and I've used Euphoria before when I was running Windows. My problem is that I want to install Euphoria on my Lindows computer now, but I don't know how to do this. I've tried using command line, but it doesn't seem to be working. Does anyone know how to go about doing this?
2. Re: Installing Euphoria
- Posted by irv mullins <irvm at ellijay.com> Jul 27, 2004
- 587 views
Tamar Curry wrote: > > I'll admit I'm pretty much a linux newbie. I'm running on Lindows OS and I've > used > Euphoria before when I was running Windows. > > My problem is that I want to install Euphoria on my Lindows computer now, but > I don't > know how to do this. I've tried using command line, but it doesn't seem to be > working. > > Does anyone know how to go about doing this? I do not believe anyone here is running Lindows. Euphoria does run on every distribution of Linux that anyone's tried, so theoretically it should work on Lindows as well. Can you give better description than "it doesn't seem to work"? That might help narrow things down a little. Regards, Irv
3. Re: Installing Euphoria
- Posted by streiffus <streiffus at yahoo.com> Jul 27, 2004
- 585 views
Well, as far as I know Lindows is Debian based, if it helps any. I downloaded it and read the Linux installation instructions, which involve adding the Euphoria bin to the user path through the command line. However, I get no results, but I don't get any errors either. It just awaits another command afterwards.
4. Re: Installing Euphoria
- Posted by irv mullins <irvm at ellijay.com> Jul 28, 2004
- 564 views
streiffus wrote: > > Well, as far as I know Lindows is Debian based, if it helps any. I downloaded > it and > read the Linux installation instructions, which involve adding the Euphoria > bin to > the user path through the command line. However, I get no results, but I > don't get > any errors either. It just awaits another command afterwards. You should add at least the following lines to your .bash_profile file: PATH=$PATH:$HOME/euphoria/bin EUDIR=$HOME/euphoria EUINC=$HOME/euphoria/include export PATH EUDIR EUINC Then you can log out, and back in, and the changes will take effect. After that, try just typing exu at a prompt. What you see when you do that will indicate what to do next. Hopefully, you'll see: Euphoria Interpreter 2.4 for Linux. Copyright (c) Rapid Deployment Software 2003 Permission is freely granted to anyone to copy and redistribute this Public Domain Edition of Euphoria. file name to execute? If something is installed in the wrong place, you may see something like: bash: exu command not found Give that a try. Irv
5. Re: Installing Euphoria
- Posted by Robert Craig <rds at RapidEuphoria.com> Jul 28, 2004
- 569 views
streiffus wrote: > Well, as far as I know Lindows is Debian based, if it helps any. I downloaded > it and > read the Linux installation instructions, which involve adding the Euphoria > bin to > the user path through the command line. However, I get no results, but I > don't get > any errors either. It just awaits another command afterwards. In some Linux environments, a program might open a new window, display some text, and then close the window so fast that you don't realize that the program has even run. You just see the next command prompt. Try adding something like: if getc(0) then end if at the end of the program, so the window won't disappear until you press a key. Regards, Rob Craig Rapid Deployment Software http://www.RapidEuphoria.com
6. Re: Installing Euphoria
- Posted by streiffus <streiffus at yahoo.com> Jul 28, 2004
- 549 views
Well, it still didn't work. Thanks anyway, though I'll have to worry about this problem later, though. There are other things that are begging for my attention, and programming is the least important of them.