Changes between Version 20 and Version 21 of Installation_old
- Timestamp:
- 07/27/11 13:10:23 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Installation_old
v20 v21 49 49 50 50 == Installation example - Scientific Linux 5.6 == 51 1. Check if ruby is already installed in the system, otherwise install it. Please also check the aversion of installed ruby.51 1. Check if proper version of ruby is already installed in the system, otherwise install it: 52 52 {{{ 53 53 #!div style="font-size: 90%" … … 63 63 }}} 64 64 65 2. Download the muscle bundle from [[http://apps.man.poznan.pl/trac/muscle/downloads|Downloads section]], e.g. 65 2. Check if Java SE Runtime Environment (JRE) or Java SE Development Kit are present (JDK) in your system. As the precompiled MUSCLE package is already included at build/muscle.jar you usually do not need to compile the Java sources and JRE is fully sufficient. If you want to recompile the Java part of the MUSCLE, a recent Java compiler is also required (javac). 66 {{{ 67 #!div style="font-size: 90%" 68 {{{#!sh 69 yum install jdk 70 }}} 71 }}} 72 73 3. Set required environment variables 74 {{{ 75 #!div style="font-size: 90%" 76 {{{#!sh 77 export JAVA_HOME=/usr/java/jdk1.6.0_26 78 export PATH=$JAVA_HOME/bin:$PATH 79 }}} 80 }}} 81 82 4. Download the muscle bundle from [[http://apps.man.poznan.pl/trac/muscle/downloads|Downloads section]], e.g. 66 83 {{{ 67 84 #!div style="font-size: 90%" … … 71 88 }}} 72 89 73 3. Extract the package:90 5. Extract the package: 74 91 {{{ 75 92 #!div style="font-size: 90%" … … 79 96 }}} 80 97 81 4. See if the MUSCLE is working:98 6. See if the MUSCLE is working: 82 99 {{{ 83 100 #!div style="font-size: 90%"