I'm setting up my Python dev environment on a new macbook... and easy_install is running like treacle down a hill. It is so slow!
Anyone else experienced this, and worked out what is wrong? I'm guessing its something network related...
Friday, May 16, 2008
Subscribe to:
Post Comments (Atom)
Popular Posts
-
These are the robots I've been working on for the last 12 months. They each weigh about 11 tonnes and have a 17 meter reach. The control...
-
This hard-to-see screenshot is a Generic Node Graph Editing framework I'm building. I'm hoping it can be used for any kind of node...
-
Unfortunately I've not secured a venue for the GGJ. With 9 days left, things are not looking hopeful. It could be that GGJ Perth will no...
-
So, you've created a car prefab using WheelCollider components, and now you can apply a motorTorque to make the whole thing move along. ...
-
MiddleMan: A Pub/Sub and Request/Response server in Go. This is my first Go project. It is a rewrite of an existing Python server, based o...
-
Often, when building a game, you need to test if objects are colliding. The objects could be spaceships, rocks, mouse pointers, laser beams....
-
I've just read a newspaper article (courtesy of Kranzky ) from WA Business News documenting the malfeasance, gross negligence and misc...
-
After my last post, I decided to benchmark the scaling properties of Stackless, Kamaelia, Fibra using the same hackysack algorithm. Left axi...
-
I made something which lets you render very large worlds with a small farClipPlane. https://github.com/simonwittber/scaled-origin The d...
-
Space is awesome. Especially when it is generated using Perlin noise, and some cool shaders. You can try it out over here.
5 comments:
It flies on my machine (macbook pro)
Is it easy install itself that's hogging it up, or is the the searching and downloading that's the problem?
I had some major performance problems with the Python version provided by Fink (espectially with the sqlite module). I don't know if this is related, but if you use Fink, you could try with MacPorts' Python for instance.
I can't recommend using any distribution of Python from Fink or MacPorts, unless you really need a specific version of Python. Python 2.5's distutils in Leopard is very well configured by default (unlike in many Linux distributions) and it comes with a huge amount of 3rd party "extra" libraries (it even comes bundled with easy_install).
If you're using Tiger, the framework version of Python 2.5 from python.org is also nice. Installing things with easy_install will install them inside the framework folder by default, which is a useful feature.
If you find easy_install having to search past the "simple" index for the package you're trying to get, it's probably because the package is uploaded to PyPI with different case. If you find PyPI is just slow in general for you, Zope has a PyPI mirror at http://download.zope.org/, which I think you can use with easy_install -i http://download.zope.org/, but Zope's mirror has no browsing interface, and I'm not sure how it syncs with the official mirror.
Thanks for the tips, the solution involved removing sqlite3 from the build.
configure --with-readline
make clean
make
easy_install -U somepackage <--greased lighting
Post a Comment