Changes between Version 4 and Version 5 of Install
- Timestamp:
- Mar 20, 2012, 1:20:39 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Install
v4 v5 1 = Installing !RefactorErl =1 = Installing !RefactorErl 2 2 3 ...3 This page guides you in installing Erlang, Yaws and !RefactorErl. 4 4 5 == Dependencies ==5 == Dependencies 6 6 7 7 The following list enumerates required software. 8 8 9 === Base system ===9 ==== Base system 10 10 11 11 * Erlang R14B04 or higher (currently WebInterface does ''not'' work with any higher version) … … 18 18 19 19 20 === WebInterface ===20 ==== WebInterface 21 21 22 22 * Server side: Yaws 1.89 23 23 * Client side: Mozilla Firefox 3.6 or higher / Google Chrome 24 24 25 === EmacsInterface ===25 ==== EmacsInterface 26 26 27 27 * Emacs 23.3 or higher - with [http://www.erlang.org/doc/apps/tools/erlang_mode_chapter.html erlang-mode] and widgets 28 28 29 === EclipseInterface ===29 ==== EclipseInterface 30 30 31 31 * Eclipse (TODO) 32 32 33 === VimInterface ===33 ==== VimInterface 34 34 35 35 * Vim 7.2 or higher 36 36 37 ... 38 39 == Local install instructions on Linux == 37 == Local install instructions on Linux 40 38 41 39 You can install !RefactorErl on a system where you do not own admin rights. Follow the instructions below. 42 40 43 You need some packages installed by the admin, but they can be found in almost all Linux systems. These are:41 You need some packages installed by the admin, but they can be found on almost all Linux systems. These are: 44 42 * gcc (>= 4.5) 45 43 * make … … 52 50 * wx (optional) 53 51 54 We assume you would like to install the tool into a local "root" directory. You should modify the following path to your one:52 We assume you would like to install the tool into a local root (e.g. /home/user/local). Modify the following path to your one: 55 53 56 54 {{{ … … 58 56 }}} 59 57 60 The local "ghost" user will be 'referl' by default. Feel free to 61 modify it. 58 The local "ghost" user will be 'referl' by default. Feel free to modify it. 62 59 63 60 {{{ … … 68 65 69 66 {{{ 70 mkdir -p $REFERL_ROOT/ $REFERL_GHOST_USER67 mkdir -p $REFERL_ROOT/home/$REFERL_GHOST_USER 71 68 }}} 72 69 … … 74 71 75 72 {{{ 76 cd $REFERL_ROOT/ $REFERL_GHOST_USER73 cd $REFERL_ROOT/home/$REFERL_GHOST_USER 77 74 wget www.erlang.org/download/otp_src_R14B04.tar.gz 78 75 tar xvvf otp_src_R14B04.tar.gz … … 88 85 89 86 {{{ 90 cd $REFERL_ROOT/ $REFERL_GHOST_USER87 cd $REFERL_ROOT/home/$REFERL_GHOST_USER 91 88 wget http://plc.inf.elte.hu/erlang/dl/refactorerl-0.9.12.01.tar.gz 92 89 tar xvvf refactorerl-0.9.12.01.tar.gz … … 97 94 }}} 98 95 99 Now you can start the tool:96 Now you should be able to use your !RefactorErl installation. If you would like to use the web based interface of the tool, you have to install the proper version (1.89) of Yaws. 100 97 101 98 {{{ 102 cd $REFERL_ROOT/$REFERL_GHOST_USER/refactorerl-0.9.12.01 103 bin/referl -erl $REFERL_ROOT/bin/erl 104 }}} 105 106 If you want to use the web based interface of the tool, you have to install the proper version (1.89) of Yaws. 107 108 {{{ 109 cd $REFERL_ROOT/$REFERL_GHOST_USER 99 cd $REFERL_ROOT/home/$REFERL_GHOST_USER 110 100 wget http://yaws.hyber.org/download/yaws-1.89.tar.gz 111 101 tar xvvf yaws-1.89.tar.gz … … 120 110 }}} 121 111 122 To run the tool execute the following commands. Remember to substitute 123 your path to 'yaws_path' part. Do not forget to change the path to yours. 112 To run the tool, execute the following commands: 124 113 125 114 {{{ 126 cd $REFERL_ROOT/ $REFERL_GHOST_USER/refactorerl-0.9.12.01115 cd $REFERL_ROOT/home/$REFERL_GHOST_USER/refactorerl-0.9.12.01 127 116 bin/referl -erl $REFERL_ROOT/bin/erl -db nif 128 117 }}} 118 119 If you have successfully installed yaws, you can start the nitrogen-based web UI with the following function call (mind to change the 'yaws_path'): 129 120 130 121 {{{