Changes between Version 87 and Version 88 of Orio
- Timestamp:
- 06/24/08 15:55:09 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Orio
v87 v88 24 24 25 25 {{{ 26 % tar -xvzf orio .tar.gz27 % cd orio 26 % tar -xvzf orio-X.X.X.tar.gz 27 % cd orio-X.X.X 28 28 % python setup.py install 29 29 }}} 30 30 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/python 2.X/site-packages` location.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/pythonX.X/site-packages` location. 32 32 33 33 To test whether Orio has been properly installed in your system, try to execute `orcc` command as given below as an example. … … 47 47 }}} 48 48 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.gz53 % cd orio 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/pythonX.X/site-packages`. 50 51 {{{ 52 % tar -xvzf orio-X.X.X.tar.gz 53 % cd orio-X.X.X 54 54 % python setup.py install --prefix=/home/username 55 55 }}} … … 58 58 59 59 {{{ 60 export PYTHONPATH=$PYTHONPATH:/home/username/lib/python /site-packages60 export PYTHONPATH=$PYTHONPATH:/home/username/lib/pythonX.X/site-packages 61 61 export PATH=$PATH:/home/username/bin 62 62 }}}