1. install on Xubuntu

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

new topic     » topic index » view message » categorize

2. Re: install on Xubuntu

engayola said...

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

new topic     » goto parent     » topic index » view message » categorize

3. Re: install on Xubuntu

Thank you very much, Matt.

new topic     » goto parent     » topic index » view message » categorize

4. Re: install on Xubuntu

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

new topic     » goto parent     » topic index » view message » categorize

5. Re: install on Xubuntu

engayola said...

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?

You need to remove the '$' from the definitions of EUDIR and EUINC:

.bashrc said...

  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/bin  
In 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. sad

Matt

new topic     » goto parent     » topic index » view message » categorize

6. Re: install on Xubuntu

Matt, Euphoria is working, thanks to your help. Greetings

new topic     » goto parent     » topic index » view message » categorize

Search



Quick Links

User menu

Not signed in.

Misc Menu