-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.python
41 lines (25 loc) · 1.06 KB
/
README.python
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
Information about the updates in the organization of the Python modules
-----------------------------------------------------------------------
Before this version all functions and data were located into the "drqueue" module.
It is now a package that includes another package named "base".
Inside the "base" package you'll find the module "libdrqueue" that contains everything that was before into the module "drqueue".
So the package tree would be:
-> drqueue
|
\-> base
|
\-> libdrqueue
INSTALLATION NOTES
------------------
To install the python modules type:
bash$ cd python
bash$ sudo python setup.py install
It might be possible that you are already the administrator and do not need sudo to install.
In that case it'd just be:
bash# cd python
bash# python setup.py install
Setuptools / Distutils
----------------------
Please refer to the documentation of these project for more details and options regarding installation and setup.
-> http://docs.python.org/distutils
-> http://www.python.org/community/sigs/current/distutils-sig/doc/