Re: problem running helloworld

2011-08-31 Thread James Murty
I have come across similar problems compiling Python libraries on OS X, caused by not having the "Mac OS X 10.4 Support" libraries installed (they're optional in X-Code) and by the Mac's version of GCC being incompatible with some code. This blog post might give you some pointers: http://www.james

Re: problem running helloworld

2011-08-31 Thread Chris McDonough
On Wed, 2011-08-31 at 14:11 -0700, Siddhartha Kasivajhula wrote: > Hi Chris, > Hmm, I did add that flag: > > > $virtualenv --no-site-packages env > New python executable in env/bin/python > Installing setuptoolsdone. > Installing pip...done. I have no theory then, sorry.

Re: problem running helloworld

2011-08-31 Thread Siddhartha Kasivajhula
I just tried creating the virtualenv and then untar'd pyramid 1.1 in the env folder. Then in the pyramid folder: $ ../bin/python setup.py install I checked in env/lib/python/site-packages and it looked like the pyramid/zope libraries were there, but running the helloworld app again gave the same

Re: problem running helloworld

2011-08-31 Thread Siddhartha Kasivajhula
Hi Chris, Hmm, I did add that flag: $virtualenv --no-site-packages env New python executable in env/bin/python Installing setuptoolsdone. Installing pip...done. Also, looks like I am able to run gcc from within the env folder: $gcc-4.2 i686-apple-darwin10-gcc-4.2.1: no i

Re: problem running helloworld

2011-08-31 Thread Chris McDonough
On Wed, 2011-08-31 at 11:41 -0700, Siddhartha Kasivajhula wrote: > Hi all, > I'm new to Pyramid, and let me say first that it looks really cool and > I've been meaning to try it for a while :). > I was going through the documentation on installation and the hello > world app, and I ran into this er

problem running helloworld

2011-08-31 Thread Siddhartha Kasivajhula
Hi all, I'm new to Pyramid, and let me say first that it looks really cool and I've been meaning to try it for a while :). I was going through the documentation on installation and the hello world app, and I ran into this error message while trying to run helloworld: siddhartha:apps-110-$python he