Changes between Version 6 and Version 7 of Orio


Ignore:
Timestamp:
06/11/08 02:49:17 (15 years ago)
Author:
hartono
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Orio

    v6 v7  
    99[http://www-unix.mcs.anl.gov/~hartono/orio/downloads/orio-0.0.1.tar.gz Orio 0.0.1 (Alpha)] 
    1010 
    11 == Installation == 
     11== Quick Installation == 
    1212 
    1313The Orio installation follows the standard Python Module Distribution Utilities, or [http://www.python.org/community/sigs/current/distutils-sig/doc/ Disutils] for short. 
    1414 
    15 For users who want to quickly install Orio to the standard locations of third-party Python modules (requiring superuser privileges in a Unix system), the installation is simple as shown below. 
     15For users who want to quickly install Orio to the standard locations of third-party Python modules (requiring superuser privileges in a Unix system), the installation is straightforward as shown below. 
    1616 
    1717{{{ 
     
    2222 
    2323On a Unix platform, the above `install` command will put an `orcc` script in the `/usr/bin` location, and also create an `orio` module directory in the `/usr/lib/python2.X/site-packages` location. 
    24  
    25 In order to install Orio to an alternate location, users need to supply a base directory for the installation. For instance, the following command will install an `orcc` script under `/home/username/bin`, and also put an `orio` module under `/home/username/lib/python/site-packages`. 
    26  
    27 {{{ 
    28 % tar -xvzf orio.tar.gz 
    29 % cd orio 
    30 % python setup.py install --prefix=/home/username 
    31 }}} 
    32  
    33 It is also important to ensure that the installed Orio module location is included in the PYTHONPATH environment variable. Similarly, users can optionally include the installed `orcc` script location in the PATH shell variable. To do this for the above example, the following two lines can be added in the `.bashrc` configuration file (assuming the user uses Bash shell of course). 
    34  
    35 {{{ 
    36 export PYTHONPATH=$PYTHONPATH:/home/username/lib/python/site-packages 
    37 export PATH=$PATH:/home/username/bin 
    38 }}} 
    3924 
    4025To test whether Orio has been properly installed in your system, try to execute `orcc` command as given below as an example. 
     
    5439}}} 
    5540 
     41In order to install Orio to an alternate location, users need to supply a base directory for the installation. For instance, the following command will install an `orcc` script under `/home/username/bin`, and also put an `orio` module under `/home/username/lib/python/site-packages`. 
     42 
     43{{{ 
     44% tar -xvzf orio.tar.gz 
     45% cd orio 
     46% python setup.py install --prefix=/home/username 
     47}}} 
     48 
     49It is also important to ensure that the installed Orio module location is included in the PYTHONPATH environment variable. Similarly, users can optionally include the installed `orcc` script location in the PATH shell variable. To do this for the above example, the following two lines can be added in the `.bashrc` configuration file (assuming the user uses Bash shell of course). 
     50 
     51{{{ 
     52export PYTHONPATH=$PYTHONPATH:/home/username/lib/python/site-packages 
     53export PATH=$PATH:/home/username/bin 
     54}}} 
     55 
    5656== Documentations == 
    5757