Changes between Version 1 and Version 2 of SageInstallation

Show
Ignore:
Timestamp:
02/01/12 11:06:34 (13 years ago)
Author:
ajaworski
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SageInstallation

    v1 v2  
    11= SAGE installation and usage = 
     2 
     3== Installation == 
     4 
     5=== Prerequisities === 
     6 
     7These packages are required to compile SAGE on Ubuntu: 
     8* build-essential 
     9* mesa-utils 
     10* python-wxtools 
     11* libmagickwand-dev 
     12* libreadline6-dev  
     13* libsdl-dev  
     14* libxmu-dev  
     15* libxi-dev  
     16* freeglut3-dev  
     17* libglew1.5-dev  
     18 
     19To operate the wall using Wiimote also these libraries are required: 
     20* wiiuse v.0.12 (http://downloads.sourceforge.net/project/wiiuse/wiiuse/v0.12/wiiuse_v0.12_src.tar.gz) 
     21* wiiusecpp v.0.12 (http://www.missioncognition.net/downloads/wiiusecpp_v0.12_src.tar.gz) 
     22More information about wiiusecpp can be found at http://www.missioncognition.net/software/wiiusecpp.html . 
     23 
     24Optionally, these packages are helpful in monitoring the system: 
     25* ethtool  
     26* iftop 
     27 
     28Before compiling SAGE make sure that the OpenGL library is linked properly in /usr/lib - some GPU drivers tend to break the links. 
     29 
     30=== Compilation === 
     31 
     32To compile SAGE simple make nad sudo make install is required.  
     33There is a configure script distributed with SAGE sources, but all it does is echo "DONE", so you don't have to run it. 
     34 
     35=== Environment setup === 
     36 
     37After installation SAGE there is some environment setup required. 
     38 
     391. Environmental variables 
     40 * in .bashrc change one of the first lines from: 
     41 {{{  
     42 [ -z "$PS1" ] && return  
     43 }}} 
     44 to: 
     45 {{{ 
     46 [ -z "$PS1" ] && . /etc/profile.d/sage.sh && return 
     47 }}} 
     48 This will setup all required environmental variables even if you don't start an interactive session but just run a command using ssh. 
     49 
     50== Usage ==