Changes between Version 5 and Version 6 of InstallationGuide
- Timestamp:
- Oct 31, 2017, 9:09:33 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallationGuide
v5 v6 4 4 5 5 ''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.git13 }}}14 6 15 7 == Dependencies == … … 22 14 == Build source archive == 23 15 24 Use the following command at '''Py4bot''' root:16 If you download the Git version, use the following command at '''Py4bot''' root: 25 17 26 18 {{{ … … 30 22 The archive will be build in the {{{dist/}}} directory. 31 23 32 == Core ==24 == Install source archive == 33 25 34 === !Gnu/Linux === 35 36 From source archive: 26 Once you have a source archive, either build from Git or downloaded from stable version, install the framework with: 37 27 38 28 {{{ 39 $ pip install Py4bot-<version>.tar.gz29 $ pip install <path to>/Py4bot-<version>.tar.gz 40 30 }}} 41 31 42 == Configuration == 32 To update the Git version, use, at '''Py4bot''' root: 43 33 34 {{{ 35 $ git pull 36 }}} 37 38 Then, re-build the source archive, as described above. 39 40 Finally: 41 42 {{{ 43 $ pip uninstall Py4bot 44 $ pip install <path to>/Py4bot-<version>.tar.gz 45 }}}
