-
Notifications
You must be signed in to change notification settings - Fork 1
Installing
Carolina Fernández edited this page May 15, 2013
·
2 revisions
Follow the next steps to manage the pyPElib package within your system
###Install
To install pyPElib into a Debian-based distro follow the next steps:
-
Download the Debian package from the
deb
branch- by downloading the raw file
- by cloning the
deb
branch that stores the file:
git clone -b deb git://github.com/fp7-ofelia/pypelib.git
-
pyPElib has a dependency with the
python-pyparsing
package. If you do not have installed this package, install it using:apt-get install python-pyparsing
-
Once all the dependencies are installed, use the following command to complete the installation:
dpkg -i pypelib_latest_all.deb
###Uninstall
To uninstall this package, use the command
dpkg -r pypelib
###Info
Package name | Python module name | Type | Location |
---|---|---|---|
pypelib | pypelib | lib | /usr/lib/python2.*/pypelib |
###How To Use pyPElib
If you want to use pyPElib in you program, you can import the whole module using:
import _pypelib_
Or if you want to use an specific class use:
from pypelib.<path.to.Class> import <ClassName>