home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / euphoria / install.doc < prev    next >
Text File  |  1994-03-10  |  5KB  |  154 lines

  1.         +-------------------------+
  2.         | How to install Euphoria |
  3.         +-------------------------+
  4.  
  5.  Configuration Information
  6.  -------------------------
  7.  To install Euphoria you need:
  8.     * a 386 or higher MS-DOS based computer
  9.     * 250K of free extended memory 
  10.     * 1 Mb of free hard disk space. 
  11.  
  12.  The Install Procedure 
  13.  ---------------------
  14.     1. cd into the directory containing the Euphoria files
  15.  
  16.     2. type: 
  17.          install
  18.  
  19.  
  20.  For instance, if you have Euphoria on a floppy you would type the
  21.  following two commands:
  22.  
  23.     a:            (or b:)
  24.     install
  25.  
  26.  If you have downloaded Euphoria and pkunzip'd in (say) C:\TMP you 
  27.  would type:
  28.  
  29.     cd c:\tmp
  30.     install
  31.  
  32.  If you happen to have unzipped into C:\EUPHORIA, that's fine, cd into it
  33.  and type: install.
  34.  
  35.  You can also install under Windows by double-clicking on install.bat.
  36.  
  37.  You will be asked which drive to put the EUPHORIA directory on. Later 
  38.  you will be asked to approve any changes to your autoexec.bat file. 
  39.  Finally, you need to reboot your machine so the new autoexec.bat will
  40.  take effect.
  41.  
  42.  After installing, see DOC\WHAT2DO.DOC for ideas on how to use this package. 
  43.  You should also read README.DOC if you haven't done so already.
  44.  
  45.  The install program is written in Euphoria. See install.ex.
  46.  
  47.         Enjoy!
  48.  
  49.  
  50.  =============================================================================
  51.  If you have problems ...
  52.  ------------------------
  53.  
  54.  * With a 2Mb RAM system, you might get an error message from DOS4GW during 
  55.    the install. This is due to a shortage of free extended memory on your 
  56.    system. You may be using SMARTDrive, RAMDrive, or some other program that 
  57.    ties up a large portion of your extended memory. Comment out the commands
  58.    in your config.sys or autoexec.bat files that start these programs, or at
  59.    least reduce the amount of memory that they reserve.  Euphoria needs 250K 
  60.    of free extended memory to run. Type "mem" in DOS to find out how much you
  61.    have. Rerun the install program when you have enough free extended memory.
  62.    You may be limited to running under DOS, outside of Windows.
  63.  
  64.  * There are several possible reasons why the install program will decide not
  65.    to edit your autoexec.bat file. Your PATH may be too close to the 127 
  66.    character limit; autoexec.bat may be read-only; etc. If this happens you 
  67.    should follow the manual procedure part B below.
  68.  
  69.  If you need any help installing Euphoria, send mail to: 
  70.     Rapid Deployment Software
  71.     130 Holm Crescent
  72.     Thornhill, Ontario
  73.     L3T 5J3
  74.     CANADA 
  75.  
  76.  or contact us via e-mail: 
  77.     [72614,1667]               on Compuserve
  78.     R.CRAIG1                   on GEnie
  79.     robert.craig@canrem.com    on the Internet
  80.  
  81.  Be sure to describe your machine configuration: 
  82.  memory, free extended memory, version of MS-DOS, etc.
  83.  
  84.  
  85.  =============================================================================
  86.  Manual Install Procedure (most people can ignore this)
  87.  ------------------------
  88.  In order to show exactly what the install procedure does, and to provide
  89.  support for people with special needs, or anyone who has trouble using the
  90.  automatic install procedure, we outline a set of manual steps below.
  91.  
  92.  Euphoria comes to you on either a floppy disk or a .zip file.
  93.  It contains 80+ files. Initially these will all be in one directory
  94.  on your floppy, or in a hard disk directory that you pkunzip'd into.
  95.  
  96.  You can install Euphoria on any drive and in any directory that you
  97.  want. Below we assume that you want to put it in C:\EUPHORIA.
  98.  
  99.  Part A - set up files
  100.  
  101.    1.  Make the EUPHORIA directory. e.g.
  102.  
  103.       mkdir c:\euphoria
  104.  
  105.    2.  Copy the 80+ files into it.
  106.       
  107.       copy *.* c:\euphoria
  108.  
  109.    3.  Change directories into c:\euphoria.
  110.  
  111.       c:
  112.       cd \euphoria
  113.  
  114.    4.  Organize the files into subdirectories.
  115.  
  116.       The install.ex program contains a list of the subdirectories
  117.       and the files that should go into each subdirectory. You could
  118.       arrange the files yourself, but it will be a lot faster if
  119.       you just type:
  120.         install
  121.       at this point and let the install program perform this step.
  122.       After asking you for the drive letter, it will detect that the 
  123.       earlier steps have been performed already. You don't have to 
  124.       accept any changes that it proposes to make to your autoexec.bat 
  125.       file.
  126.  
  127.  Part B - edit autoexec.bat
  128.  
  129.    5.  In the file  c:\autoexec.bat  add  c:\euphoria\bin  to the list of 
  130.        directories in your PATH command. You might use the MS-DOS EDIT
  131.        command or any other text editor to do this. e.g.
  132.  
  133.         edit c:\autoexec.bat
  134.  
  135.        (Although Euphoria is not fully installed at this point, you could 
  136.     type:
  137.         cd c:\euphoria\bin
  138.         ex ed c:\autoexec.bat
  139.         to edit using the Euphoria editor. See doc\ed.doc.)
  140.     
  141.    6.  In the same autoexec.bat file add a new line:
  142.  
  143.       set eudir=c:\euphoria
  144.  
  145.        The eudir environment variable indicates the full path to 
  146.        the main Euphoria directory. 
  147.  
  148.    7. Press Control-Alt-Delete to reboot. 
  149.       This will define your new PATH and EUDIR environment variables.
  150.  
  151.  ============================================================================
  152.  
  153.  
  154.