Changes between Version 4 and Version 5 of Chared


Ignore:
Timestamp:
11/16/23 17:18:21 (6 months ago)
Author:
admin
Comment:

New installation using setuptools

Legend:

Unmodified
Added
Removed
Modified
  • Chared

    v4 v5  
    1313
    1414== Installation ==
    15 1. Make sure you have Python 3.6 or later and lxml library version 4.1 or later installed.
    16 2. Download the sources:
     151. Make sure you have Python 3.6 or newer. Required packages are installed via pip automatically (or system-wide, e.g. python3-lxml in Fedora).
     162. Download, extract, install:
    1717{{{
    18 wget http://corpus.tools/raw-attachment/wiki/Downloads/chared-2.0.tar.gz
     18wget https://corpus.tools/raw-attachment/wiki/Downloads/chared-2.1.tar.gz
     19tar xzvf chared-2.1.tar.gz
     20cd chared-2.1/
     21pip install --user . #omit --user to install for all users
    1922}}}
    20 3. Extract the downloaded file:
     23
     24=== Legacy installation (using distutils, deprecated) ===
    2125{{{
     26wget https://corpus.tools/raw-attachment/wiki/Downloads/chared-2.0.tar.gz
    2227tar xzvf chared-2.0.tar.gz
    2328cd chared-2.0/
    24 }}}
    25 4. Install the package (to install for all users, omit --user, you may need sudo or a root shell):
    26 {{{
    27 python3 setup.py install --user
     29python3 setup.py install --user #omit --user to install for all users
    2830}}}
    2931