Re: pyramid start example (4.1) does not run on my machine

2011-03-10 Thread armen
hi everybody, This is what I did. 1)I installed a virtualenv catalogue named env 2)I activated the virtualenv, a prefix (env) appeared in my prompt 3)finally I typed easy_install pyramid Unfortunately the above error appears, local python shell has pyramid installed. What drives me crazy is that

Re: pyramid start example (4.1) does not run on my machine

2011-03-10 Thread Chris McDonough
My only guess is that you're not using the virtualenv paster or python when you're trying to start the application. On Wed, 2011-03-09 at 00:16 -0800, armen wrote: Dear community, I am new to pyramid, I followed the installation steps as described in pyramid 1.0 documentation, but when I

Re: pyramid start example (4.1) does not run on my machine

2011-03-10 Thread Simon King
Do you perhaps have another python package called 'pyramid' somewhere on your path (such as a test app)? Try putting the following before the line that is generating the error: import pyramid print pyramid.__path__ Simon On 10 Mar 2011, at 12:46, Sebastian Zwack