pilar@0: ============ pilar@0: Installation pilar@0: ============ pilar@0: pilar@0: The handling of packages and the virtual environment is managed by poetry. pilar@0: pilar@0: Installation on production system as user pilar@0: ----------------------------------------- pilar@0: pilar@0: system requirements: pip, python3 pilar@0: pilar@0: 1) install poetry pilar@0: pilar@0: .. code:: console pilar@0: pilar@0: $ python -mpip install --user poetry pilar@0: pilar@0: pilar@0: 2) set , where poetry puts the virtual environment pilar@0: pilar@0: .. code:: console pilar@0: pilar@0: $ poetry config virtualenvs.path pilar@0: pilar@0: 3) on slackware, it is necessary to set poetry installer type pilar@0: pilar@0: .. code:: console pilar@0: pilar@0: $ poetry config experimental.new-installer false pilar@0: pilar@0: 4) download project from the repository pilar@0: pilar@0: .. code:: console pilar@0: pilar@0: repository pilar@0: pilar@2: 5) install eldamwl_plot pilar@0: pilar@0: .. code:: console pilar@0: pilar@0: $ poetry install pilar@0: pilar@2: 6) activate virtual environment pilar@0: pilar@0: .. code:: console pilar@0: pilar@0: $ poetry shell pilar@0: pilar@2: Check whether the installation was successful pilar@2: --------------------------------------------- pilar@0: pilar@0: .. code:: console pilar@0: pilar@0: $ poetry shell pilar@2: $ python eldamwl_plot.py -h pilar@0: pilar@0: or pilar@0: pilar@0: .. code:: console pilar@0: pilar@2: $ poetry run python eldamwl_plot.py -h