]> jfr.im git - irc/weechat/qweechat.git/blob - INSTALL
Fix typo in INSTALL
[irc/weechat/qweechat.git] / INSTALL
1 = QWeeChat installation
2 Sébastien Helleu <flashcode@flashtux.org>
3
4
5 Required to run QWeeChat:
6 - Python 2.x >= 2.6
7 - PySide (recommended, packages: python.pyside.*) or PyQt4 (python-qt4)
8
9 == Run without install
10
11 Extract files from archive and run qweechat.py:
12
13 ----
14 $ tar xvzf qweechat-x.y.tar.gz
15 $ cd qweechat-x.y
16 $ python src/qweechat/qweechat.py
17 ----
18
19 == Run with install
20
21 Extract files from archive and install using script 'setup.py':
22
23 ----
24 $ tar xvzf qweechat-x.y.tar.gz
25 $ cd qweechat-x.y
26 ----
27
28 To install in your home:
29
30 ----
31 $ python setup.py install --home=~/qweechat
32 ----
33
34 To install in system directories (as root):
35
36 ----
37 # python setup.py install
38 ----
39
40 == WeeChat setup
41
42 You have to add a relay port in WeeChat, for example on port 1234:
43
44 ----
45 /relay add weechat 1234
46 /set relay.network.password "mypass"
47 ----
48
49 == Connect to WeeChat
50
51 In QWeeChat, click on connect and enter fields:
52
53 * 'server': the IP address or hostname of your machine with WeeChat running
54 * 'port': the relay port (defined in WeeChat)
55 * 'password': the relay password (defined in WeeChat)
56
57 Options can be changed in file '~/.qweechat/qweechat.conf'.
58
59
60 See AUTHORS for support, feel free to contact us for any problem.