-
Notifications
You must be signed in to change notification settings - Fork 295
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pip install -e fails with compile error #352
Comments
On Sat, Mar 29, 2014 at 11:09 AM, C. Titus Brown
Confirmed on Ubuntu 12.04.4 LTS This is a Setuptools / distutils issue with how they handle command options This appears to be due to the fact that we extend the setuptools I can work around this by moving the include directories back into setup.py |
This workaround disables the ability to override the include directory list via setup.cfg
This workaround disables the ability to override the include directory list via setup.cfg
This workaround disables the ability to override the include directory list via setup.cfg
|
#353 now includes a monkeypatch to fix the real problem |
On Sat, Mar 29, 2014 at 12:14:54PM -0700, Michael R. Crusoe wrote:
Should we file this as a bug report in Python?C. Titus Brown, ctb@msu.edu |
@ctb Yes. Likely it won't be fixed there (as it does change behavior); setuptools would be a good place to include the monkeypatch. |
Distribution.reinitialize_command implies that you get the same command that get_command_obj() but fails to set options that were supplied in config files or on the command line like Distribution.get_command_obj() does. This includes a monkeypatch to fix this issue.
Distribution.reinitialize_command implies that you get the same command that get_command_obj() but fails to set options that were supplied in config files or on the command line like Distribution.get_command_obj() does. This includes a monkeypatch to fix this issue.
|
Distribution.reinitialize_command implies that you get the same command that get_command_obj() but fails to set options that were supplied in config files or on the command line like Distribution.get_command_obj() does. This includes a monkeypatch to fix this issue.
Distribution.reinitialize_command implies that you get the same command that get_command_obj() but fails to set options that were supplied in config files or on the command line like Distribution.get_command_obj() does. This includes a monkeypatch to fix this issue.
The command:
fails with:
khmer/_khmermodule.cc:17:20: fatal error: khmer.hh: No such file or directory
on ami-c17ec8a8, which admittedly is an old Ubuntu install. I did upgrade pip to the latest version first, however.
The text was updated successfully, but these errors were encountered: