]> git.phdru.name Git - sqlconvert.git/blob - docs/install.rst
Build(GHActions): Use `checkout@v4` instead of outdated `v2`
[sqlconvert.git] / docs / install.rst
1 Installation using pip
2 ======================
3
4 System-wide
5 -----------
6
7 ::
8
9     sudo pip install sqlconvert
10
11
12 User mode
13 ---------
14
15 ::
16
17     pip install --user sqlconvert
18
19 Virtual envs
20 ------------
21
22 ::
23
24     pip install sqlconvert
25
26 Installation from sources
27 =========================
28
29 To install the library from sources system-wide run run the following
30 command:
31
32 ::
33
34     sudo python setup.py install
35
36 If you don't want to install it system-wide you can install it in your
37 home directory; run run the following command:
38
39 ::
40
41     python setup.py install --user
42
43 Option '--user' installs sqlconvert into
44 $HOME/.local/lib/python$MAJOR.$MINOR/site-packages/ where python finds it
45 automatically. It also installs sqlconvert scripts into $HOME/.local/bin;
46 add the directory to your $PATH or move the scripts to a directory in your
47 $PATH.