1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
INSTALLATION
============
If you want to install this module into your Python distribution just launch:
$ python ./setup.py install
If you want to install it only for the current user you can add the --user
option to the previous command:
$ python ./setup.py install --user
Troubleshooting:
===============
If you get an error when using --user that this switch cannot be combined with
"prefix", this is a bug in the distutils.py setup on your machine (happens with
several linux distributions). The workaround is to create a file called
$HOME/.pydistutils.cfg, which contains
[install]
prefix=
|