Re: Install Euphoria On Linux
- Posted by irv mullins <irvm at ellijay.com> Jul 08, 2004
- 523 views
Andy wrote: > > I have Suse Linux. I am running it as a desktop. How do you edit the bash > so that you can install Euphoria on Linux. You need to edit .bash_profile Note the leading dot, it's a hidden file. Add the following 3 lines: PATH=$PATH:$HOME/euphoria/bin EUDIR=$HOME/euphoria export PATH EUDIR You may also want to set up a EUINC to point to some other include directory: EUINC=$HOME/euphoria/include/gtk2 export EUINC Then just log out and back in, and the new environment should be set up. To confirm, type echo $EUDIR or just type exu and see if the Euphoria interpreter shows up. Irv