Changes between Version 33 and Version 34 of Installation
- Timestamp:
- 12/04/12 11:32:59 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Installation
v33 v34 62 62 }}} 63 63 64 When the dependencies are in place, you are ready to build and install MUSCLE. Download the muscle bundle from [[http://apps.man.poznan.pl/trac/muscle/downloads|Downloads section]], or from the command-line , e.g.,64 When the dependencies are in place, you are ready to build and install MUSCLE. Download the muscle bundle from [[http://apps.man.poznan.pl/trac/muscle/downloads|Downloads section]], or from the command-line. Then unzip the folder, go to the build directory inside and run the {{{build.sh}}} command. 65 65 {{{ 66 66 curl -#O http://apps.man.poznan.pl/trac/muscle/downloads/MUSCLE-2.0.0rc2-sources.zip 67 unzip MUSCLE-2.0.0rc2-sources.zip 68 cd MUSCLE-2.0.0rc2-sources/build 69 70 sudo ./build.sh 67 71 }}} 68 72 69 Extract the download, e.g., 70 {{{ 71 unzip MUSCLE-2.0.0rc2-sources.zip 72 }}} 73 Change your working directory to the the MUSCLE directory: 74 {{{ 75 cd MUSCLE-2.0.0rc2-sources/build 76 }}} 77 Invoke MUSCLE build script with installation; this installs MUSCLE in /opt/muscle. For another location, add this as the first argument. 78 {{{ 79 sudo ./build.sh 80 }}} 81 See if MUSCLE is working correctly: 82 {{{ 83 source /opt/muscle/etc/muscle.profile 84 muscle2 --version 85 }}} 73 This installs MUSCLE in /opt/muscle. For another location, add this as the first argument to {{{build.sh}}}. 74 86 75 The command 87 76 {{{ … … 89 78 }}} 90 79 should always be run before executing MUSCLE. It can help to put this command in {{{~/.bashrc}}} so that it runs at login. 80 81 Finally, see if MUSCLE is working correctly: 82 {{{ 83 muscle2 --version 84 }}} 91 85 == Further reading == 92 86 For more information how to use MUSCLE see the [[Documentation]] and [[Tutorials]] sections.