Changes between Version 87 and Version 88 of Orio


Ignore:
Timestamp:
06/24/08 15:55:09 (15 years ago)
Author:
hartono
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Orio

    v87 v88  
    2424 
    2525{{{ 
    26 % tar -xvzf orio.tar.gz 
    27 % cd orio 
     26% tar -xvzf orio-X.X.X.tar.gz 
     27% cd orio-X.X.X 
    2828% python setup.py install 
    2929}}} 
    3030 
    31 On a Unix platform, the above `install` command will normally 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. 
     31On a Unix platform, the above `install` command will normally put an `orcc` script in the `/usr/bin` location, and also create an `orio` module directory in the `/usr/lib/pythonX.X/site-packages` location. 
    3232 
    3333To test whether Orio has been properly installed in your system, try to execute `orcc` command as given below as an example. 
     
    4747}}} 
    4848 
    49 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`. 
    50  
    51 {{{ 
    52 % tar -xvzf orio.tar.gz 
    53 % cd orio 
     49In 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/pythonX.X/site-packages`. 
     50 
     51{{{ 
     52% tar -xvzf orio-X.X.X.tar.gz 
     53% cd orio-X.X.X 
    5454% python setup.py install --prefix=/home/username 
    5555}}} 
     
    5858 
    5959{{{ 
    60 export PYTHONPATH=$PYTHONPATH:/home/username/lib/python/site-packages 
     60export PYTHONPATH=$PYTHONPATH:/home/username/lib/pythonX.X/site-packages 
    6161export PATH=$PATH:/home/username/bin 
    6262}}}