Changes between Version 19 and Version 20 of Justext


Ignore:
Timestamp:
11/16/23 16:22:27 (6 months ago)
Author:
admin
Comment:

Installation via pip and setuptools

Legend:

Unmodified
Added
Removed
Modified
  • Justext

    v19 v20  
    2020
    2121== Installation ==
    22 1. Make sure you have Python 3.6 or newer and lxml library version 4.1 or later (system-wide, e.g. python3-lxml in Fedora, or pip install --user lxml) and Python HTML 5 parser (system-wide, e.g. python3-html5-parser in Fedora, or pip install --user html5-parser) installed.
    23 2. Download the sources:
     221. Make sure you have Python 3.6 or newer. Required packages are installed via pip automatically (or system-wide, e.g. python3-lxml and python3-html5-parser in Fedora).
     232. Download, extract, install:
     24{{{
     25wget http://corpus.tools/raw-attachment/wiki/Downloads/justext-4.3.tar.gz
     26tar xzvf justext-4.3.tar.gz
     27cd justext-4.3/
     28pip install --user . #omit --user to install for all users
     29}}}
     30
     31=== Legacy installation (using distutils, deprecated) ===
    2432{{{
    2533wget http://corpus.tools/raw-attachment/wiki/Downloads/justext-4.2.5.tar.gz
    26 }}}
    27 3. Extract the downloaded file:
    28 {{{
    2934tar xzvf justext-4.2.5.tar.gz
    30 }}}
    31 4. Install the package (omit --user to install for all users):
    32 {{{
    3335cd justext-4.2.5/
    34 python3 setup.py install --user
     36python3 setup.py install --user #omit --user to install for all users
    3537}}}
    3638