1. install on Xubuntu
- Posted by engayola Jun 11, 2009
- 827 views
- Last edited Jun 12, 2009
Hi, I have not been able to install euphoria 3.1.1 on Xubuntu 9.04 . I have not found sufficient information at the web. Can someone help me? Thank you very much. Marcelo
2. Re: install on Xubuntu
- Posted by mattlewis (admin) Jun 12, 2009
- 834 views
Hi, I have not been able to install euphoria 3.1.1 on Xubuntu 9.04 . I have not found sufficient information at the web. Can someone help me?
The easiest thing to do is to simply decompress it in your home directory. Then you just need to set up a couple of environment variables. Open up .bashrc in a text editor, and add:
export PATH=$PATH:/home/marcelo/euphoria/bin export EUDIR=$/home/marcelo/euphoria
Obviously, modify your paths as necessary. This won't take effect until you've logged out and then back in. If you don't want to do that, simply run those commands from a terminal, and at least in that shell, you'll be able to use euphoria.
Let us know if you have any more specific questions.
Matt
3. Re: install on Xubuntu
- Posted by engayola Jun 12, 2009
- 829 views
- Last edited Jun 13, 2009
Thank you very much, Matt.
4. Re: install on Xubuntu
- Posted by engayola Jun 13, 2009
- 747 views
Matt, I tell my initial error was to change the file ".profile" instead of ". bashrc". But still problems with:
marcelo@rovi:/euphoria/demo/linux$ exu qsort.exu qsort.exu:6 can't find dll.e in . or in $/home/marcelo/euphoria/include or in $/home/marcelo/euphoria/include include dll.e ^ My .bashrc say
export PATH=$PATH:/home/marcelo/euphoria/bin export EUDIR=$/home/marcelo/euphoria export EUINC=$/home/marcelo/euphoria/include
can help me again?
Grateful Marcelo
5. Re: install on Xubuntu
- Posted by mattlewis (admin) Jun 13, 2009
- 786 views
Matt, I tell my initial error was to change the file ".profile" instead of ". bashrc". But still problems with:
marcelo@rovi:~/euphoria/demo/linux$ exu qsort.exu qsort.exu:6 can't find dll.e in . or in $/home/marcelo/euphoria/include or in $/home/marcelo/euphoria/include include dll.e ^My .bashrc say
export PATH=$PATH:/home/marcelo/euphoria/bin export EUDIR=$/home/marcelo/euphoria export EUINC=$/home/marcelo/euphoria/includecan help me again?
You need to remove the '$' from the definitions of EUDIR and EUINC:
export PATH=$PATH:/home/marcelo/euphoria/bin export EUDIR=/home/marcelo/euphoria export EUINC=/home/marcelo/euphoria/include
The '$' tells bash that the characters that follow the '$' is a variable, hence:
export PATH=$PATH:/home/marcelo/euphoria/binIn euphoria, this would be equivalent to:
PATH = append( PATH, "/home/marcelo/euphoria/bin" )
But when you're setting the directories, you don't want that extra '$'. For some reason, I added that in when replying to you before. It was a typo. Sorry about that.
Matt
6. Re: install on Xubuntu
- Posted by engayola Jun 13, 2009
- 742 views
Matt, Euphoria is working, thanks to your help. Greetings