-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathINSTALL
87 lines (54 loc) · 2.79 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
Weboob installation
===================
Using the packages provided by your distribution is recommended.
See http://weboob.org/install for a list of available packages.
Since there are many dependencies, when you install from sources,
you have to handle them by hand, according to your distribution.
The requirements are provided in ``setup.py``, except for:
* gpgv (for secure updates). If not packaged alone, it should be in ``gnupg`` or ``gpg``.
* For more performance, ensure you have ``libyaml`` and ``simplejson`` installed.
Some modules may have more dependencies.
After a package or system installation, you should run ``weboob-config update``
as your login user.
There are 2 versions of weboob:
* stable: for end-users, only modules are updated on this version, not the core or apps
* master: for development, modules and core libs and apps are updated frequently
End-user installation (stable version)
--------------------------------------
No need to use the git repository in this case. Just
$ pip install --user weboob
This pip installation can be run within a virtualenv if desired (don't add ``--user``).
Then `weboob-config update` can be run to fetch the list of available modules,
and the various weboob commands (boobank, videoob, etc.) can be run and are able
to install modules.
Developer installation (master version)
---------------------------------------
There is a way to install weboob locally without messing with your system.
$ pip install --user -e .
The scripts are copied to ``~/.local/bin``.
This pip installation can be run within a virtualenv if desired (don't add ``--user``).
Developer installation (master version, alternative)
----------------------------------------------------
There is a way to install weboob locally without messing with your system.
Run ``./tools/local_install.sh`` as your local user. ::
$ ./tools/local_install.sh ~/bin
The scripts are copied to ``~/bin``.
System installation (discouraged)
---------------------------------
The install mode copies files to the Python system-wide packages directory (for
example ``/usr/lib/python3.7/dist-packages`` for Python 3.7. ::
# pip install --system .
Scripts are copied to ``/usr/bin``.
No installation mode (master version)
-------------------------------------
This does not actually install anything, but lets you run Weboob from the
source code, while also using the modules from that source. This is only
recommended if using the git source and not a release. ::
$ ./tools/local_run.sh APPLICATION COMMANDS
For example, instead of running ``videoob -b youtube search plop``, you would
run::
$ ./tools/local_run.sh videoob -b youtube search plop
Bash completion
---------------
To enable bash completion, just source the ``tools/weboob_bash_completion``
file from your ``~/.bashrc`` file.