Re: problem installing in Linux Mint
- Posted by Insolor Feb 01, 2011
- 2405 views
silvercoon said...
/home/david/Euphoria/Astro/astro.ex:376 <0052>:: can't find 'demos\basdemos.e' in any of ... /home/david/Euphoria/Astro /home/david/Euphoria/Astro/astro.ex /usr/share/euphoria/include /usr/share/euphoria include demos\basdemos.e as bas ^
astro.ex is DOS program (athough it wrote under WinXP). Probably include problem there is because of '\' character. Try to replace:
include demos\basdemos.e as bas
with
include demos/basdemos.e as bas
Even though if would help, note that astro.ex is DOS programme and uses dos-specific routines (eg. pixel-graphics ones), so it will not run under Linux.