Sikander Lhote <[email protected]> writes: > Hello. > I am trying to install mwlib on a Mac server but get an error i cant > find any solutions on. > > System: > Mac OS X 10.7.2 > Python 2.7 > XTools 4.2.1 (gcc 4.2.1) > > Log: > ... > gevent/core.c: At top level: > gevent/core.c:21272: error: expected β)β before βvalβ > lipo: can't open input file: /var/tmp//ccT31Z1G.out (No such file or > directory) > error: Setup script exited with error: command 'llvm-gcc-4.2' failed > with exit status 1 > > What i tried: > I started with pip and everything went great until it tries to install > gevent. > I tried to download the installer and run <sudo python setup.py > install> but that didnt help. (you can see a video of that here: > http://db.tt/fczipHFs)
please just copy and paste the output of your shell commands next time. > I have checked the privileges and also run a repair of the privileges. > It seems to me that the file it is looking for is changing name or is > deleted before it gets to use it (you can se this in the film). It may > also be the double-slash (in the log: /var/tmp//ccT31Z1G.out) but i > dont know. > Does anyone have any clue how to fix this? IMHO pip install gevent doesn't work with gevent 0.13.x on OS X. I think it's missing the libevent includes and libraries. Please try running the following: ,---- | pip install -i http://pypi.pediapress.com/simple/ gevent `---- this one installs the gevent development version. it at least works on 10.6 without any libevent/libev headers installed. -- Cheers Ralf -- You received this message because you are subscribed to the Google Groups "mwlib" 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/mwlib?hl=en.
