Is psyco available for python 2.6?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • sert

    Is psyco available for python 2.6?

    I used the windows installer for the latest version of psyco,
    which is labeled as compatible with 2.5, but it gives the
    following error:

    ImportError: DLL load failed: The specified module could not be
    found. (check that the compiled extension 'C:\Python26\li b\site-
    packages\psyco\ _psyco.pyd' is for the correct Python version;
    this is Python 2.6)
  • bearophileHUGS@lycos.com

    #2
    Re: Is psyco available for python 2.6?

    sert:
    I used the windows installer for the latest version of psyco,
    which is labeled as compatible with 2.5, but it gives the
    following error:
    ImportError: DLL load failed: The specified module could not be
    found. (check that the compiled extension 'C:\Python26\li b\site-
    packages\psyco\ _psyco.pyd' is for the correct Python version;
    this is Python 2.6)
    I think you have tried to install something compiled for Python 2.5 on
    Python 2.6, therefore it doesn't work.
    At the moment Psyco isn't available for Python 2.6, you will probably
    have to wait some months (or use Python 2.5+Psyco in the meantime).

    Bye,
    bearophile

    Comment

    • =?ISO-8859-1?Q?Gerhard_H=E4ring?=

      #3
      Re: Is psyco available for python 2.6?

      bearophileHUGS@ lycos.com wrote:
      sert:
      >I used the windows installer for the latest version of psyco,
      >which is labeled as compatible with 2.5, but it gives the
      >following error:
      >ImportError: DLL load failed: The specified module could not be
      >found. (check that the compiled extension 'C:\Python26\li b\site-
      >packages\psyco \_psyco.pyd' is for the correct Python version;
      >this is Python 2.6)
      >
      I think you have tried to install something compiled for Python 2.5 on
      Python 2.6, therefore it doesn't work.
      At the moment Psyco isn't available for Python 2.6, you will probably
      have to wait some months (or use Python 2.5+Psyco in the meantime).
      psyco seems to just work on Linux with Python 2.6. So it is probably
      "only" a matter of compiling it on Windows for Python 2.6.

      -- Gerhard

      Comment

      • Anton Vredegoor

        #4
        Re: Is psyco available for python 2.6?

        On Thu, 30 Oct 2008 17:45:40 +0100
        Gerhard Häring <gh@ghaering.de wrote:
        psyco seems to just work on Linux with Python 2.6. So it is probably
        "only" a matter of compiling it on Windows for Python 2.6.
        Yes. I compiled it using "wp setup.py build --compiler=mingw3 2" with
        cygwin, where wp was an alias for my windows xp python executable.

        For the OP and other people interested in windows binaries:

        I am in no way connected to or involved in the psyco development
        process -- except that I downloaded and compiled it -- but I have put a
        zip file on line for people who have a lot of trust in me and little
        patience for waiting for the official distribution. Just unpack it and
        put it in your site-packages directory.



        A.




        Comment

        • Fuzzyman

          #5
          Re: Is psyco available for python 2.6?

          On Nov 9, 2:18 pm, Anton Vredegoor <anton.vredeg.. .@gmail.comwrot e:
          On Thu, 30 Oct 2008 17:45:40 +0100
          >
          Gerhard Häring <g...@ghaering. dewrote:
          psyco seems to just work on Linux with Python 2.6. So it is probably
          "only" a matter of compiling it on Windows for Python 2.6.
          >
          Yes. I compiled it using "wp setup.py build --compiler=mingw3 2" with
          cygwin, where wp was an alias for my windows xp python executable.
          >
          For the OP and other people interested in windows binaries:
          >
          I am in no way connected to or involved in the psyco development
          process -- except that I downloaded and compiled it -- but I have put a
          zip file on line for people who have a lot of trust in me and little
          patience for waiting for the official distribution. Just unpack it and
          put it in your site-packages directory.
          >

          >
          A.
          I've built a Windows installer if anyone is interested:



          Michael
          --
          Pedestrian accidents can happen in the blink of an eye, changing lives forever. When you're out for a stroll or crossing the street, an unexpected collision

          Comment

          • bearophileHUGS@lycos.com

            #6
            Re: Is psyco available for python 2.6?

            Fuzzyman:
            I've built a Windows installer if anyone is interested:
            Thank you to both.

            Bye,
            bearophile

            Comment

            • Kay Schluehr

              #7
              Re: Is psyco available for python 2.6?

              On 9 Nov., 20:44, Fuzzyman <fuzzy...@gmail .comwrote:
              On Nov 9, 2:18 pm, Anton Vredegoor <anton.vredeg.. .@gmail.comwrot e:
              >
              >
              >
              On Thu, 30 Oct 2008 17:45:40 +0100
              >
              Gerhard Häring <g...@ghaering. dewrote:
              psyco seems to just work on Linux with Python 2.6. So it is probably
              "only" a matter of compiling it on Windows for Python 2.6.
              >
              Yes. I compiled it using "wp setup.py build --compiler=mingw3 2" with
              cygwin, where wp was an alias for my windows xp python executable.
              >
              For the OP and other people interested in windows binaries:
              >
              I am in no way connected to or involved in the psyco development
              process -- except that I downloaded and compiled it -- but I have put a
              zip file on line for people who have a lot of trust in me and little
              patience for waiting for the official distribution. Just unpack it and
              put it in your site-packages directory.
              >>
              A.
              >
              I've built a Windows installer if anyone is interested:
              >

              >
              Michael
              --http://www.ironpythoni naction.com/
              Thanks. You guys rock!

              Comment

              Working...