Changes between Version 5 and Version 6 of InstallationGuide


Ignore:
Timestamp:
Oct 31, 2017, 9:09:33 AM (8 years ago)
Author:
fma
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallationGuide

    v5 v6  
    44
    55''This installation guide refers to the current git release of Py4bot.''
    6 
    7 == Git ==
    8 
    9 '''Py4bot''' uses [http://git-scm.com/ git] as VCS. To get the latest sources files:
    10 
    11 {{{
    12 $ git clone https://framagit.org/fma38/Py4bot.git
    13 }}}
    146
    157== Dependencies ==
     
    2214== Build source archive ==
    2315
    24 Use the following command at '''Py4bot''' root:
     16If you download the Git version, use the following command at '''Py4bot''' root:
    2517
    2618{{{
     
    3022The archive will be build in the {{{dist/}}} directory.
    3123
    32 == Core ==
     24== Install source archive ==
    3325
    34 === !Gnu/Linux ===
    35 
    36 From source archive:
     26Once you have a source archive, either build from Git or downloaded from stable version, install the framework with:
    3727
    3828{{{
    39 $ pip install Py4bot-<version>.tar.gz
     29$ pip install <path to>/Py4bot-<version>.tar.gz
    4030}}}
    4131
    42 == Configuration ==
     32To update the Git version, use, at '''Py4bot''' root:
    4333
     34{{{
     35$ git pull
     36}}}
     37
     38Then, re-build the source archive, as described above.
     39
     40Finally:
     41
     42{{{
     43$ pip uninstall Py4bot
     44$ pip install <path to>/Py4bot-<version>.tar.gz
     45}}}