setuptools 6.0 or later is required for Python to automatically detect this compiler package.
Ah, interesting. I did try and install the compiler, but had no luck. This must have been why. Thanks for pointing this out, I’ll update the docs with this as well. Another thing that brought my attention was that the requests module was not on the requirements.txt, maybe you can add it, since if you already have it, wont make any problem Requests isn’t actually a requirement of Event, but only used in the example on the front-page as it seems to simplify syntax a bit and makes for easier-to-understand examples. Now that you mention it, there is however one requirement that isn’t required on a local install, which is Gunicorn. Unless you’re using Gunicorn as your server application, I haven’t used anything else and can’t comment much about it. But if you’re just testing things out, you can also run the Flask application directly. $ python pyblish-event/app/app.py I mention this because I remember gunicorn had some special requirements of it’s own when installing, but if it gives you lip, just ignore it until you’re distributing the app to a dedicated machine. On 11 November 2014 18:09, Eduardo Grana <[email protected]> wrote: > Hey Marcus, > > I have another thing to say about the vcvarsall.bat situation, > in order for the compiler to work, your setuptools need to be updated > As microsoft states on their page: > > setuptools <https://pypi.python.org/pypi/setuptools> 6.0 or later is > *required* for Python to automatically detect this compiler package. > > > I was running this on another machine, and wasn't working until I got the > setuptools updated. > > Another thing that brought my attention was that the requests module was > not on > the requirements.txt, maybe you can add it, since if you already have it, > wont make any problem > > Cheers! > Eduardo > > On Tue, Nov 11, 2014 at 11:26 AM, Marcus Ottosson <[email protected]> > wrote: > >> Ok, so what was missing was this >> >> That’s good news, thanks for sharing that. Basically, there are two ways >> of approaching installing gevent; one is to let pip compile it, for which >> it will need a compiler like the one you posted. The other is to install a >> pre-compiled binary, like the one I posted. Both will work just fine, the >> benefit of the compiler is that you may be able to use it to compile for >> Maya’s Python as well which can be very handy! >> >> I´ll go on with the installation and let you know how it goes… >> >> Cool, are you writing plug-ins to communicate with it too? I don’t think >> I’d be the only one interested in taking part in that! There’s lots of room >> for expansion as of yet, you could lead the way in terms of what >> requirements to follow up on. >> >> Best, >> Marcus >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Python Programming for Autodesk Maya" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected]. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/python_inside_maya/CAFRtmOBPCDZB%3D_96eTNX98Ym4zZkgdyXM89XQokCFHNaj4hFRA%40mail.gmail.com >> <https://groups.google.com/d/msgid/python_inside_maya/CAFRtmOBPCDZB%3D_96eTNX98Ym4zZkgdyXM89XQokCFHNaj4hFRA%40mail.gmail.com?utm_medium=email&utm_source=footer> >> . >> >> For more options, visit https://groups.google.com/d/optout. >> > > > > -- > Eduardo Graña > www.eduardograna.com.ar > > -- > You received this message because you are subscribed to the Google Groups > "Python Programming for Autodesk Maya" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/python_inside_maya/CACt6GrkoqN%2BYb_ST3sZioesf8mTQ9zeQ7DKRjjdPW_Ux4KK9KA%40mail.gmail.com > <https://groups.google.com/d/msgid/python_inside_maya/CACt6GrkoqN%2BYb_ST3sZioesf8mTQ9zeQ7DKRjjdPW_Ux4KK9KA%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > > For more options, visit https://groups.google.com/d/optout. > -- *Marcus Ottosson* [email protected] -- You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAFRtmOC7%2B11c9maGHAVfZmFE2O%3DWJFs7bGShbxKLr8zjc9iiRw%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
