Changes between Version 104 and Version 105 of DevelopGuide


Ignore:
Timestamp:
Apr 2, 2010, 11:49:30 PM (15 years ago)
Author:
Frédéric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DevelopGuide

    v104 v105  
    55== Introduction ==
    66
    7 Papywizard is entirely written in python. Branch 2.x now uses '''PyQt''' (Python binding for Qt), and a few additional modules, mainly for hardware control, '''pybluez''' and '''pyserial'''.
     7Papywizard is entirely written in python. Branch 2.x now uses '''!PyQt''' (Python binding for Qt) for the GUI, '''pybluez''' and/or '''pyserial''' for hardware control.
    88
    99== Build from source ==
    1010
    11 It is best to work on the subversion branch. To get it, just do:
     11It is best to work on the subversion branch:
    1212
    1313{{{
     
    1515}}}
    1616
    17 In order to run Papywizard from source, you need the following libs:
     17In order to run Papywizard from source, you need:
    1818
    1919 * Python >= 2.5: http://www.python.org/ftp/python
    20  * (Qt: http://qt.nokia.com/downloads Needed?)
     20
     21and the following libs:
     22
     23 * Qt >= 4.5: http://qt.nokia.com/downloads
    2124 * !PyQt >= 4.5: http://www.riverbankcomputing.co.uk/static/Downloads/PyQt4
    2225 * pybluez: http://code.google.com/p/pybluez/downloads/list
    2326 * pyserial: http://sourceforge.net/projects/pyserial/files
    2427
    25 == Gnu/linux ==
     28Be sure to use the same python version for all of them.
     29
     30Papywizard can be launch by the following commands:
     31
     32{{{
     33$ ./papywizard.sh
     34or
     35$ ./Papywizard.py
     36}}}
     37
     38=== Gnu/linux ===
    2639
    2740All the needed libs come with most distributions.
    2841
    29 == Windows ==
     42=== Windows ===
     43
     44On Windows, !PyQt package don't need the Qt package. But the following libs are needed:
    3045
    3146 * pywin32: http://sourceforge.net/projects/pywin32
     47 * MSVC2008 C++ runtime DLLs: http://www.microsoft.com/downloads/details.aspx?familyid=9B2DA534-3E03-4391-8A4D-074B9F2BC1BF&displaylang=en
     48
     49To get the sources from the subversion repository, you can use:
     50
    3251 * svn tool: http://tortoisesvn.tigris.org
    3352
    34 MSVC2008 C++ runtime DLLs may also be needed. It can be download from http://www.microsoft.com/downloads/details.aspx?familyid=9B2DA534-3E03-4391-8A4D-074B9F2BC1BF&displaylang=en
     53To launch Papywizard, run the {{{windows/papywizard.bat}}} script.
    3554
    3655== API ==