Changes between Version 4 and Version 5 of Chared
- Timestamp:
- 11/16/23 17:18:21 (15 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Chared
v4 v5 13 13 14 14 == 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:15 1. 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). 16 2. Download, extract, install: 17 17 {{{ 18 wget http://corpus.tools/raw-attachment/wiki/Downloads/chared-2.0.tar.gz 18 wget https://corpus.tools/raw-attachment/wiki/Downloads/chared-2.1.tar.gz 19 tar xzvf chared-2.1.tar.gz 20 cd chared-2.1/ 21 pip install --user . #omit --user to install for all users 19 22 }}} 20 3. Extract the downloaded file: 23 24 === Legacy installation (using distutils, deprecated) === 21 25 {{{ 26 wget https://corpus.tools/raw-attachment/wiki/Downloads/chared-2.0.tar.gz 22 27 tar xzvf chared-2.0.tar.gz 23 28 cd 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 29 python3 setup.py install --user #omit --user to install for all users 28 30 }}} 29 31