This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.araujo
Recipients alexis, eric.araujo, meatballhat, tarek
Date 2010-08-30.06:28:06
SpamBayes Score 3.2927328e-11
Marked as misclassified No
Message-id <1283149689.4.0.993374302407.issue8668@psf.upfronthosting.co.za>
In-reply-to
Content
One part of develop that we could add is the creation of a .pth file in a directory on sys.path (with Python >= 2.6, --user gives that for free). IMNSHO, this should be implemented as an option to the install_lib* command, named --link-only or something better.

*(Not install, since .pth does not handle scripts, headers or data. The purpose of this command/option is to make modules and packages importable, more would be trickier.)

(“pythonx.y setup.py install_lib --user --link-only” is long, I agree. This problem is solved with copy/paste, shell history, shell function, or we could steal the aliases system from setuptools.)

I have a suspicion the install command (or a subcommand) already has most of what it takes to do this. I’m still trying to understand the extra_path argument (#901727), which may or may not give us 90% of what’s needed to implement this feature.
History
Date User Action Args
2010-08-30 06:28:09eric.araujosetrecipients: + eric.araujo, tarek, meatballhat, alexis
2010-08-30 06:28:09eric.araujosetmessageid: <1283149689.4.0.993374302407.issue8668@psf.upfronthosting.co.za>
2010-08-30 06:28:07eric.araujolinkissue8668 messages
2010-08-30 06:28:06eric.araujocreate