home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / chip-cd_2000_05.zip / 05 / aktualnosci / shareware / euphoria / INSTALL.DOC < prev    next >
Text File  |  2000-01-13  |  4KB  |  127 lines

  1.  
  2.  
  3.                          How to Install Euphoria on DOS/Windows 
  4.  
  5.  
  6.  To install Euphoria you need:
  7.  -----------------------------
  8.  
  9.       * a 386 or higher PC
  10.  
  11.       * at least 640K of memory
  12.  
  13.       * 5 Mb of free hard disk space
  14.  
  15.  
  16.  The Install Procedure
  17.  =====================
  18.  
  19.      1. cd into the directory containing the Euphoria files
  20.  
  21.      2. type: 
  22.               install
  23.  
  24.  If you have downloaded Euphoria and pkunzip'd in (say) c:\tmp you would type:
  25.  
  26.      cd c:\tmp
  27.      install
  28.  
  29.  If you happen to have unzipped into C:\EUPHORIA, that's fine, cd into it and
  30.  type: install
  31.  
  32.  You can also install under Windows by double-clicking on install.bat
  33.  
  34.  You will be asked which drive to put the EUPHORIA directory on. Later you will
  35.  be asked to approve any changes to your autoexec.bat file. Finally, *you need
  36.  to shut down and restart (soft-reboot) your computer* so the new autoexec.bat
  37.  will take effect.
  38.  
  39.  After installing, see doc\what2do.doc (or html\what2do.htm) for ideas on how
  40.  to use this package. You should also read readme.doc (or readme.htm) if you
  41.  haven't done so already.
  42.  
  43.                Enjoy!
  44.  
  45.  
  46.  How to Uninstall Euphoria
  47.  =========================
  48.  
  49.      1. delete the EUPHORIA directory
  50.      
  51.      2. remove the 2 references to "EUPHORIA" from your autoexec.bat file
  52.  
  53.  
  54.  
  55.  If you have problems installing ...
  56.  -----------------------------------
  57.  
  58.       * If the install appeared to run ok, did you remember to shut down and
  59.         restart your computer?
  60.  
  61.       * If a failure happens during the install, shut down any large
  62.         applications that you have running, and try it again.
  63.  
  64.       * Try installing under plain DOS, outside of Windows.
  65.  
  66.       * Disable or cut back programs such as SMARTDRV that may be consuming
  67.         large amounts of extended memory.
  68.  
  69.       * Try typing:
  70.  
  71.            SET CAUSEWAY=LOWMEM:80
  72.  
  73.         before you run install.bat
  74.  
  75.       * There are several possible reasons why the install program will decide
  76.         not to edit your autoexec.bat file. If this happens you should follow
  77.         the manual procedure described below.
  78.  
  79.       * If your system does not use an autoexec.bat file (e.g. Windows NT and
  80.         possibly Windows 95) then set the EUDIR and PATH variables in whatever
  81.         way your system allows. If you have an autoexec.bat file, but it
  82.         doesn't contain a PATH command, you will have to create one that
  83.         includes C:\EUPHORIA\BIN.
  84.  
  85.       * If you have less than 20 megabytes of free disk space, free up a few
  86.         megabytes, and run install.bat again.
  87.  
  88.  If you need help installing Euphoria, send e-mail to: rds@attcanada.net
  89.  
  90.  Be sure to describe your machine configuration: memory, free extended memory,
  91.  operating system, etc.
  92.  
  93.  
  94.  How to manually edit autoexec.bat
  95.  ---------------------------------
  96.  
  97.  In some cases the install program will not be able to modify your autoexec.bat
  98.  file for you automatically, and you will have to do the job yourself using a
  99.  text editor.
  100.  
  101.  1.  - In the file c:\autoexec.bat add C:\EUPHORIA\BIN to the list of
  102.        directories in your PATH command. You might use the MS-DOS EDIT command,
  103.        Windows Notepad or any other text editor to do this. e.g.
  104.  
  105.                edit c:\autoexec.bat
  106.        
  107.        (Although Euphoria is not fully installed at this point, you could type:
  108.  
  109.                cd c:\euphoria\bin
  110.                ed c:\autoexec.bat
  111.        
  112.        to edit using the Euphoria editor. See doc\ed.doc)
  113.  
  114.  2.  - In the same autoexec.bat file add a new line:
  115.  
  116.                SET EUDIR=C:\EUPHORIA
  117.        
  118.        The EUDIR environment variable indicates the full path to the main
  119.        Euphoria directory.
  120.  
  121.  3.  - Reboot (restart) your machine. This will define your new PATH and EUDIR
  122.        environment variables.
  123.  
  124.  
  125.  
  126.  
  127.