473,394 Members | 1,752 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

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\lib\site-
packages\psyco\_psyco.pyd' is for the correct Python version;
this is Python 2.6)
Oct 30 '08 #1
6 7092
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\lib\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
Oct 30 '08 #2
be************@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\lib\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

Oct 30 '08 #3
On Thu, 30 Oct 2008 17:45:40 +0100
Gerhard Häring <gh@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=mingw32" 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.

http://members.home.nl/anton.vredegoor/psyco/

A.


Nov 9 '08 #4
On Nov 9, 2:18*pm, Anton Vredegoor <anton.vredeg...@gmail.comwrote:
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=mingw32" 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.

http://members.home.nl/anton.vredegoor/psyco/

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

http://www.voidspace.org.uk/python/modules.shtml

Michael
--
http://www.ironpythoninaction.com/
Nov 9 '08 #5
Fuzzyman:
I've built a Windows installer if anyone is interested:
Thank you to both.

Bye,
bearophile
Nov 9 '08 #6
On 9 Nov., 20:44, Fuzzyman <fuzzy...@gmail.comwrote:
On Nov 9, 2:18*pm, Anton Vredegoor <anton.vredeg...@gmail.comwrote:
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=mingw32" 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.
http://members.home.nl/anton.vredegoor/psyco/
A.

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

http://www.voidspace.org.uk/python/modules.shtml

Michael
--http://www.ironpythoninaction.com/
Thanks. You guys rock!
Nov 9 '08 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: KefX | last post by:
Hey...as for what I'm doing with Python, look at my post "Strange Hotshot problem". To make a long story short, I'm embedding Python in order to write a plugin to a freeware music program; the...
0
by: Jeremy Sanders | last post by:
Hi - I'm trying to build a Psyco rpm on Fedora 1. I try the command xpc5:~/psyco-1.1.1> python setup.py bdist_rpm this fails with: .... copying dist/psyco-1.1.1.tar.gz ->...
4
by: Roy Smith | last post by:
I understand that psyco significantly increases memory use. Is that for code or data? More specifically, if I've got a memory intensive application (it might use 100's of Mbytes of data), should...
7
by: Ivan Voras | last post by:
I have this simple *dumb* benchmark-like program: #import psyco #psyco.full() d = 0.0 for i in xrange(1000000000): d += i print d
3
by: Dick Moores | last post by:
psyco is acting a bit psycho for me. Please see my spinForWeb.py at <http://www.rcblue.com/Python/spinForWeb.py> When psyco is in use, entering an integer somewhere between 2000 and 2500...
5
by: Fausto Arinos Barbuto | last post by:
Hi All; I have Psyco (on Windows XP) and now I want to install it on Linux, too. I FTP'd the tarball (tar.gz) from Psyco's site but can't get it compiled. First, I tried the usual "python...
6
by: danmcleran | last post by:
I'm not seeing much benefit from psyco (only 5-10% faster). Maybe this example is too trivial? Can someone give me some pointers as to what kind of code would see a dramatic benefit? Here's the...
15
by: Steve Bergman | last post by:
Just wanted to report a delightful little surprise while experimenting with psyco. The program below performs astonoshingly well with psyco. It finds all the prime numbers < 10,000,000 ...
1
by: Arash Arfaee | last post by:
Hello All, I am trying to use psyco with wingide on mac. when I open Mac Python shell I can import psyco, but not inside the wingide. Even python shell on wingide cannot import psyco. Can...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.