]> git.phdru.name Git - m_lib.full.git/blob - INSTALL.txt
Build(release): Skip exiting files at PyPI
[m_lib.full.git] / INSTALL.txt
1 m_lib.full requires Python 2.6 (that means pip >= 9, < 10), 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     For Python 2.6 the command is easy_install.
20
21 Installation from sources:
22
23     To install the library from sources system-wide run run the following
24     command:
25
26     sudo python setup.py install
27
28     If you don't want to install it system-wide you can install it in your
29     home directory; run run the following command:
30
31     python setup.py install --user
32
33 Option '--user' installs m_lib.full into
34 $HOME/.local/lib/python$MAJOR.$MINOR/site-packages/ where python finds it
35 automatically.