Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
weboob
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
180
Issues
180
List
Boards
Labels
Milestones
Merge Requests
53
Merge Requests
53
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
weboob
weboob
Commits
39f94065
Commit
39f94065
authored
Jul 06, 2010
by
Christophe Benz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update installation instructions
parent
9582c63c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
18 deletions
+31
-18
INSTALL
INSTALL
+31
-18
No files found.
INSTALL
View file @
39f94065
Weboob installation
===================
Like any
setuptools package, Weboob can be installed in normal mode,
or in
development mode.
Like any
Python package using setuptools, Weboob can be installed in normal or
development mode.
Debian note
-----------
Weboob is distributed with many packages. There is one package for the core
library, many packages for backends (grouped by capabilities), and one package
for each application.
When using Debian, it is advised to use Python Debian packages, and not the PyPI ones.
To achieve this, please install the following packages before installing Weboob:
* python-gdata
Eggs install
------------
normal mode
-----------
Call the helper script which will build the packages and install them all:
Install:
# ./setup.py install --record installed_files.txt
# ./tools/create_all_packages.sh install
The files are simply copied in /usr/lib/python2.5/site-packages/Weboob-x.y-py2.5.egg
The --record flag is used to remember which files were copied.
To uninstall:
* remove the Weboob eggs:
# rm -rf /usr/lib/python2.5/site-packages/weboob_*.egg
* remove the weboob lines in
/usr/lib/python2.5/site-packages/easy-install.pth
Uninstall:
# cat installed_files.txt | xargs rm -rf
d
evelopment mode
D
evelopment mode
----------------
The development mode doesn't copy files, but it creates an egg-link
...
...
@@ -32,9 +31,23 @@ which points to the development directory.
It is useful for development when files often change.
# ./setup.py develop
Creates /usr/lib/python2.5/site-packages/Weboob.egg-link
Creates /usr/lib/python2.5/site-packages/weboob_dev.egg-link
To uninstall, remove this egg-link and remove the weboob_dev line in
/usr/lib/python2.5/site-packages/easy-install.pth
Debian note
-----------
When using Debian, it is advised to install Python Debian packages, and not the
PyPI ones (when they are available).
To achieve this, please install the following packages before installing Weboob:
* python-gdata
b
ash completion
B
ash completion
---------------
To enable bash completion, just source the tools/weboob_bash_completion
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment