Changes between Version 9 and Version 10 of CompileError


Ignore:
Timestamp:
2013-04-03T12:36:31Z (11 years ago)
Author:
zooko
Comment:

add mac os x error and a TL;DR shortcut

Legend:

Unmodified
Added
Removed
Modified
  • CompileError

    v9 v10  
    55Sometimes running {{{python setup.py build}}} results in an error message about a compile failure. This page will tell you how to get past that problem.
    66
    7 A typical error message when building is:
     7A typical error message when building on Windows is:
    88
    99{{{
     
    1111}}}
    1212
    13 That's on Windows. On Linux a typical error message is:
     13On Linux a typical error message is:
    1414
    1515{{{
    1616error: Python.h: No such file or directory
    1717}}}
     18
     19On Mac OS X a typical error message is:
     20
     21{{{
     22unable to execute clang: No such file or directory
     23}}}
     24
     25=== in brief ===
     26
     27The short version, for people who don't want to read this whole page is: write to the tahoe-dev mailing list and ask if some volunteer will kindly build a binary package of the necessary library for your operating system and your version of Python. In your request, include: 1. the entire output from your attempt to build (which will include an error message like one of those above), 2. what operating system you are using, 3. what version of Python you are using ({{{python -V}}}), 4. some nice words like "please" and "thank you".
    1828
    1929=== Why This Happens ===