Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Pyramid with GAE error
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  7 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Alejandro Jatib  
View profile  
 More options Sep 15 2012, 11:43 pm
From: Alejandro Jatib <aja...@gmail.com>
Date: Sat, 15 Sep 2012 20:43:41 -0700 (PDT)
Local: Sat, Sep 15 2012 11:43 pm
Subject: Pyramid with GAE error

Hi guys,
I'm making a new project with pyramid_appengine (I have a few other and
these are working fine) and when i try to "buildout" a skeleton empty
project i have this error:

.....

Any suggestion?
I use virtualenv and I have setuptools installed in the same virtualenv.

Thanks!


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Thomas G. Willis  
View profile  
 More options Sep 16 2012, 11:05 am
From: "Thomas G. Willis" <tom.wil...@gmail.com>
Date: Sun, 16 Sep 2012 08:05:34 -0700 (PDT)
Local: Sun, Sep 16 2012 11:05 am
Subject: Re: Pyramid with GAE error

As far as I know, buildout and virtualenv dont play well together. buildout
and virtualenv do share some of the same goals such as isolating your
development environment libraries from your system. there's no reason I can
think of to use both.

I would suggest trying to bootstrap the buildout with the system python2.7.
like so

$ /usr/bin/python2.7 bootstrap.py --distribute && ./bin/buildout

If that doesn't work, file an issue @
https://github.com/Batterii/pyramid_appengine/issues and I'll see if I can
help you out.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jacob Hite  
View profile  
 More options Sep 25 2012, 2:25 am
From: Jacob Hite <jrh...@gmail.com>
Date: Tue, 25 Sep 2012 13:25:38 +0700
Local: Tues, Sep 25 2012 2:25 am
Subject: Re: Pyramid with GAE error
I've encountered the same problem.

The pyramid docs here specifically document using virtualenv and
buildout together. Docs should probably be fixed...

http://docs.pylonsproject.org/projects/pyramid_cookbook/en/latest/dep...

On Sun, Sep 16, 2012 at 10:05 PM, Thomas G. Willis <tom.wil...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Thomas G. Willis  
View profile  
 More options Sep 26 2012, 12:23 pm
From: "Thomas G. Willis" <tom.wil...@gmail.com>
Date: Wed, 26 Sep 2012 12:23:09 -0400
Local: Wed, Sep 26 2012 12:23 pm
Subject: Re: Pyramid with GAE error
I suppose the explanation for what you are doing(or should be) should
go here then to make it more obvious.

http://docs.pylonsproject.org/projects/pyramid_cookbook/en/latest/dep...

~/ $ cd newproject
~/newproject $ /usr/bin/python2.7 bootstrap.py --distribute

pyramid_appengine merely generates a buildout directory based on
templates, once the project is generated, it's does not have
pyramid_appengine as a dependency.

installing pyramid/associated libs like pyramid_appengine in a
virtualenv is generally good practice so that you avoid polluting your
system install of python

maybe it's a miss on the expected experience level of the reader. If I
documented why you should use buildout and why you should use
virtualenv and why appengine apps are structured the way they are it
would be very long documentation that would be quickly out of date
because it would have to be copied from other sources.

So I'm open to suggestions on how to make this bit clearer, but I'm
not too keen on documenting virtualenv, appengine apps and buildout.
especially since all 3 are in a state of flux at the moment.

Thomas G. Willis


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Alejandro Jatib  
View profile  
 More options Oct 2 2012, 7:15 pm
From: Alejandro Jatib <aja...@gmail.com>
Date: Tue, 2 Oct 2012 16:15:18 -0700 (PDT)
Local: Tues, Oct 2 2012 7:15 pm
Subject: Re: Pyramid with GAE error

Thanks Thomas.
I solve this issue deleting all files and creating a brand new virtualenv
with a new installation of pyramid_appengine (a few week ago with pyramid
1.4 this not work, but with 1.3.4 yes)

I not understand deeply how buildout works but i can do "the salad" with
buildout/appengine/pyramid and works fine!

Alejandro

El miércoles, 26 de septiembre de 2012 13:23:16 UTC-3, Thomas G. Willis
escribió:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jacob Hite  
View profile  
 More options Oct 4 2012, 10:56 pm
From: Jacob Hite <jrh...@gmail.com>
Date: Fri, 5 Oct 2012 09:56:38 +0700
Local: Thurs, Oct 4 2012 10:56 pm
Subject: Re: Pyramid with GAE error
Thanks Alejandro for the tip. Indeed things work well with pyramid
1.3. Not so well with 1.4.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jens W. Klein  
View profile  
 More options Nov 5 2012, 6:05 pm
From: "Jens W. Klein" <j...@bluedynamics.com>
Date: Tue, 06 Nov 2012 00:02:28 +0100
Local: Mon, Nov 5 2012 6:02 pm
Subject: Re: Pyramid with GAE error
On 2012-10-05 04:56, Jacob Hite wrote:

> Thanks Alejandro for the tip. Indeed things work well with pyramid
> 1.3. Not so well with 1.4.

I run in similar problems with 1.4 and tried to fix them. Even if not
tested in-depth, here are my working results.

https://github.com/jensens/pyramid-gae-tutorial

comments and further help is welcome.

hth anyone
Jens

--
Klein & Partner KG, member of BlueDynamics Alliance

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »