]> git.phdru.name Git - m_lib.defenc.git/blob - INSTALL.txt
Release 1.1.0.post1: Tested with Pytho 3.12
[m_lib.defenc.git] / INSTALL.txt
1 m_lib.defenc requires Python 2.7 or 3.4+.
2
3 Installation script setup.py requires setuptools.
4
5 Installation using pip:
6
7     System-wide:
8
9     sudo pip install m_lib.defenc
10
11     User mode:
12
13     pip install --user m_lib.defenc
14
15     Virtual environments:
16
17     pip install m_lib.defenc
18
19 Installation from sources:
20
21     To install the library from sources system-wide run run the following
22     command:
23
24     sudo python setup.py install
25
26     If you don't want to install it system-wide you can install it in your
27     home directory; run run the following command:
28
29     python setup.py install --user
30
31 Option '--user' installs m_lib.defenc into
32 $HOME/.local/lib/python$MAJOR.$MINOR/site-packages/ where python finds it
33 automatically.