[Distutils] What's missing from easy_install
Berthold "Höllmann"
berthold.hoellmann at gl-group.com
Tue Apr 14 16:58:33 CEST 2009
Neal Becker <ndbecker2 at gmail.com> writes:
> 1. easy_remove!
>
> 2. Various utilities to provide query package management.
> - easy_install --list (list files installed)
Support for installations that differentiate between `--prefix` and
`--exec-prefix` on configure, i.e. as with all Python installations most
header files are in the directory
>>> "%s/include/python%s" % (sys.prefix, sys.version[:3])
But `pyconfig.h` is found in
>>> "%s/include/python%s" % (sys.exec_prefix, sys.version[:3])
And for installation, modules should go to
>>> "%s/lib/python%s/site-packages" % (sys.prefix, sys.version[:3])
But C extensions to
>>> "%s/lib/python%s/site-packages" % (sys.exec_prefix, sys.version[:3])
Kind regards
Berthold Höllmann
--
Germanischer Lloyd AG
CAE Development
Vorsetzen 35
20459 Hamburg
Phone: +49(0)40 36149-7374
Fax: +49(0)40 36149-7320
e-mail: berthold.hoellmann at gl-group.com
Internet: http://www.gl-group.com
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 197 bytes
Desc: not available
URL: <http://mail.python.org/pipermail/distutils-sig/attachments/20090414/3e261fde/attachment.pgp>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: disclaimer.txt
Type: application/octet-stream
Size: 2196 bytes
Desc: not available
URL: <http://mail.python.org/pipermail/distutils-sig/attachments/20090414/3e261fde/attachment.obj>
More information about the Distutils-SIG
mailing list