Re: How to install Euphoria on a USB flash drive?
- Posted by Greg Haberek <ghaberek at gmail.com> Nov 23, 2005
- 564 views
> What do you all think? I have to do the same thing at work, since I'm at users' machines. Step 1: Save the following to install_eu.bat inside your Euphoria directory @echo off set EUDIR=%CD% set EUINC=%EUDIR%\INCLUDE set PATH=%PATH%;%EUDIR%\BIN echo Euphoria Installed! Step 2: On any given machine, open up a new command line and cd into your Euphoria directory, then run install_eu.bat. Minimize the command window, DON'T CLOSE IT! The trick is that the environment variables setup in the command window are local and will go away when you close it, *but* will work as long as it remains open. Simply close the command window when you are finished. ~Greg