File tree 3 files changed +64
-0
lines changed
3 files changed +64
-0
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,31 @@ If you are having problems,
76
76
you can check the logs at ``~/.local/share/lira/log/lira.log ``,
77
77
or at ``~/AppData/Local/lira-data/log/lira.log `` if you are using Windows.
78
78
79
+ To debug with the lira's terminal interface running you may need
80
+ `python-remote-pdb <https://github.com/ionelmc/python-remote-pdb >`__,
81
+ install it with:
82
+
83
+ .. code-block :: bash
84
+
85
+ pip install remote-pdb
86
+
87
+ It works just as pdb, import it with:
88
+
89
+ .. code-block :: python
90
+
91
+ from remote_pdb import set_trace
92
+ set_trace()
93
+
94
+ And to connect to it from another terminal:
95
+
96
+ .. code-block :: bash
97
+
98
+ telnet 127.0.0.1 4444
99
+
100
+ For more insights about it, please read the
101
+ `python-remote-pdb <https://github.com/ionelmc/python-remote-pdb >`__
102
+ documentation.
103
+
79
104
Roadmap
80
105
-------
81
106
Original file line number Diff line number Diff line change @@ -34,5 +34,6 @@ Contents
34
34
:maxdepth: 2
35
35
36
36
config.rst
37
+ install.rst
37
38
development.rst
38
39
modules/index.rst
Original file line number Diff line number Diff line change
1
+ Install
2
+ =======
3
+
4
+ From Source
5
+ -----------
6
+
7
+ To install lira directly from the GitHub repository.
8
+
9
+ .. code-block :: bash
10
+
11
+ python -m pip install git+https://github.com/pythonecuador/lira
12
+
13
+
14
+ Pipx
15
+ ----
16
+
17
+ Pipx allows you to run Python applications in isolated environments,
18
+ check out the documentation `here <https://pipxproject.github.io/pipx/ >`__.
19
+
20
+ Install pipx with pip.
21
+
22
+ .. code-block :: bash
23
+
24
+ pip install pipx
25
+
26
+ Then, add pipx to the PATH.
27
+
28
+ .. code-block :: bash
29
+
30
+ python -m pipx ensurepath
31
+
32
+ It will ask you to restart your terminal,
33
+ then install lira.
34
+
35
+ .. code-block :: bash
36
+
37
+ pipx install lira
38
+
You can’t perform that action at this time.
0 commit comments