]> git.phdru.name Git - m_lib.full.git/blob - INSTALL.txt
Build: Remove duplicate `requirements.txt`
[m_lib.full.git] / INSTALL.txt
1 m_lib.full 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.full
10
11     User mode:
12
13     pip install --user m_lib.full
14
15     Virtual environments:
16
17     pip install m_lib.full
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.full into
32 $HOME/.local/lib/python$MAJOR.$MINOR/site-packages/ where python finds it
33 automatically.