equal
deleted
inserted
replaced
14 ====================================== |
14 ====================================== |
15 :: |
15 :: |
16 |
16 |
17 $ python -m compileall dir |
17 $ python -m compileall dir |
18 |
18 |
|
19 Install python modules/packages. |
|
20 ================================ |
|
21 |
|
22 http://wiki.python.org/moin/CheeseShopTutorial |
|
23 Installing Distributions from the Python Package Index (Start Here) |
|
24 |
19 Uninstall python modules. |
25 Uninstall python modules. |
20 ========================= |
26 ========================= |
21 |
27 |
22 Install again and save list of installed files:: |
28 Install again and save list of installed files:: |
23 |
29 |
24 $ python setup.py install --record files.txt |
30 $ python setup.py install --record files.txt |
25 $ rm `cat files.txt` |
31 $ rm `cat files.txt` |
|
32 |
|
33 http://peak.telecommunity.com/DevCenter/EasyInstall#uninstalling-packages |
|
34 Uninstalling Packages |
26 |
35 |
27 Code analyzers and style checkers. |
36 Code analyzers and style checkers. |
28 ================================== |
37 ================================== |
29 |
38 |
30 Pylint. |
39 Pylint. |