Psyco is a Python extension module which can greatly speed up the execution of any Python code.
0
votes
1answer
42 views
Python 2.6 importing packages (psyco) on Ubuntu
Why does importing psyco work when I call my script directly, but when I call it from a bash script it fails???
test.sh:
while true
do
python test.py;
sleep 10;
done
test.py:
try:
...
0
votes
2answers
231 views
Does Pypy Support PyTables and Numpy?
And if it doesn't, is there anyway to speed up my python code for accessing pytables on a 64-bit system (so no psyco)?
1
vote
1answer
326 views
Speedup pydev debugging on python 2.6+
PyDev reports it can use psyco to speed its debugger. However the most up-to-date psyco build I found for windows was for python 2.5.
Is there a way to speed-up pydev debugging, either with or without ...
4
votes
2answers
973 views
I use Python 2.7, Windows 7 64-bit — alternatives to Psyco?
Apparently Psyco doesn't work for Python 2.7.
Are there other alternatives?
4
votes
2answers
380 views
Looking for a good replacement for Psyco (Python->C compiler)
We really like Psyco to speed things up, but it also has some drawbacks:
it consumes too much memory
it can also slow some code down
compiling your code can take too much time
it doesn't support ...
1
vote
1answer
122 views
Using psyco with py2exe?
In my main script, lets call this MyScript.py, I have it like this:
import psyco
psyco.full()
And then my setup.py looks like this:
from distutils.core import setup
import py2exe, sys, os, glob
...
14
votes
1answer
272 views
Recent-ish changes to the Python execution model?
I just re-read the section on execution models in the 3rd edition of Learning Python (late 2007), and it felt fairly tentative. So, I looked at the same section in the 4th edition (late 2009) and was ...
6
votes
4answers
691 views
Installing psyco for python on Snow Leopard
I'm having some trouble installing psyco on my Macbook pro running Snow Leopard with python 2.6.1.
I've been trying to force python to run in 32-bit mode using the command
defaults write ...
5
votes
1answer
2k views
Alternative to psyco for 64-bit machines
Psyco is amazing when it works. However, short of moving to a 32-bit version of Python, it doesn't look like we'll get a 64-bit version anytime soon. Are there any alternatives to psyco that can speed ...
2
votes
1answer
110 views
Including Psyco Files in distribution
I'm developing a game server in python. Since this server is distributed to other people who don't have much coding experience(or common sense) I try to include any modules I can into a pre-reqs ...
0
votes
6answers
309 views
how to improve the performance?
i had prepared a project on making a software application. It is complete and working fine except that the speed of execution is very slow..i have taken several chunks of code and optimized it..
i ...
1
vote
1answer
741 views
Strange error installing Psyco in Python
I have installed psyco in one machine with no problem, but i'm getting an strange error while installing in one other machine.
I'm not able to use easy_install, since it gives me an error:
...
10
votes
4answers
955 views
What are the possible pitfalls in porting Psyco to 64-bit?
The Psyco docs say:
Just for reference, Psyco does not
work on any 64-bit systems at all.
This fact is worth being noted again,
now that the latest Mac OS/X 10.6
"Snow Leopart" comes with ...
0
votes
2answers
153 views
psyco complains about unsupported opcode 54, what is it?
The Psyco log output look like this:
21:08:47.56 Logging started, 10/29/09 %%%%%%%%%%%%%%%%%%%%
21:08:47.56 unsupported opcode 54 at create_l0:124 % %
...
3
votes
3answers
898 views
Does using Psyco with django make any sense?
I know the benefits of Psyco for a Desktop app, but in a Web app where a process ( = a web page or an AJAX call) dies immediately after been fired, isn't it pointless ?
5
votes
4answers
573 views
Why does Psyco use a lot of memory?
Psyco is a specialising compiler for Python. The documentation states
Psyco can and will use large amounts of memory.
What are the main reasons for this memory usage? Is substantial memory ...
2
votes
2answers
207 views
What are the risks (if any) of mixing Psyco into my project?
I work on a large financial pricing application in which some long running calculations. We have identified some functions which can be sped up by the selective application of psyco. My management ...
0
votes
2answers
278 views
Porting a Python app that uses Psyco to Mac
I'm trying to port my Python app from Windows to Mac. My app uses Psyco. How exactly do I install Psyco on Mac?
Keep in mind I'm a Mac newbie.
33
votes
8answers
4k views
Why not always use psyco for Python code?
psyco seems to be quite helpful in optimizing Python code, and it does it in a very non-intrusive way.
Therefore, one has to wonder. Assuming you're always on a x86 architecture (which is where most ...
3
votes
1answer
785 views
Psyco x64?
Is there a way to get the same sort of speedup on x64 architecture as you can get from psyco on 32 bit processors?
