doc/install.rst
changeset 810 707e2be17a43
equal deleted inserted replaced
809:b86b8898fd52 810:707e2be17a43
       
     1 Beremiz installation 
       
     2 ====================
       
     3 
       
     4 Windows
       
     5 -------
       
     6 Download installer, install. 
       
     7 
       
     8 Linux
       
     9 -----
       
    10 Pre-requisites::
       
    11 
       
    12     # Ubuntu/Debian :
       
    13     sudo apt-get install python-wxgtk2.8 pyro mercurial
       
    14     sudo apt-get install build-essential bison flex python-numpy python-nevow
       
    15 
       
    16 Prepare::
       
    17 
       
    18     mkdir ~/Beremiz
       
    19     cd ~/Beremiz
       
    20 
       
    21 Get Source Code::
       
    22 
       
    23     cd ~/Beremiz
       
    24     
       
    25     hg clone http://dev.automforge.net/beremiz
       
    26     hg clone http://dev.automforge.net/plcopeneditor
       
    27     hg clone http://dev.automforge.net/matiec
       
    28 
       
    29 Build MatIEC compiler::
       
    30 
       
    31     cd ~/Beremiz/matiec
       
    32     ./configure
       
    33     make
       
    34 
       
    35 Build CanFestival (optional):: 
       
    36 
       
    37     # Only needed for CANopen support. Please read CanFestival 
       
    38     # manual to choose CAN interface other than 'virtual'::
       
    39 
       
    40     cd ~/Beremiz
       
    41     hg clone http://dev.automforge.net/CanFestival-3
       
    42     
       
    43     cd ~/Beremiz/CanFestival-3
       
    44     ./configure --can=virtual
       
    45     make
       
    46 
       
    47 Launch Beremiz::
       
    48 
       
    49     cd ~/Beremiz/beremiz
       
    50     python Beremiz.py
       
    51