I suspect this is happening when pip is trying to install thy python imaging library (iirc that's one of the few packages that require a C compiler to install). How to install dependencies is somewhat dependent upon the linux distribution you are using. On debian/ubuntu I would do...
# apt-get install python-dev ...and then try the pip install again. If that didn't work, I'd try... # apt-get build-dep python-imaging ...and then try the pip install once more. But if you're not on something debian-based you'll need to take different steps. Bottom line is that pip is trying to install a package from source and so it is trying to compile C code with gcc but you don't have the compiler installed. --Stuart On Wed, Dec 8, 2010 at 12:45 PM, jc <[email protected]> wrote: > When issuing the command I get "unable to execute gcc: No such file or > directory" > > When using pip install -r > http://bitbucket.org/chris1610/satchmo/raw/tip/scripts/requirements.txt > > Anyone have this issue before and how do I go about finding this > missing dependency? > > Thanks, > J. > > -- > You received this message because you are subscribed to the Google Groups > "Satchmo users" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/satchmo-users?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Satchmo users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/satchmo-users?hl=en.
