Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #33794
| Date | 2012-11-22 09:56 +0100 |
|---|---|
| From | Thomas Bach <thbach@students.uni-mainz.de> |
| Subject | Re: Web Frameworks Excessive Complexity |
| References | (1 earlier) <20121121094939.2be7ebf0809c1959538f8166@lavabit.com> <CAMZYqRTABN-WhVHfMVH+dBPtWw9KJF-3Hkc60g__cRB0LdkOpQ@mail.gmail.com> <20121121105703.83afe07ede3c397cf7529092@lavabit.com> <CAMZYqRQ88kFegtFLy8oWY1emLZro8OOLO6YeC3VQN6Hh-v+5RQ@mail.gmail.com> <20121121124952.8942ed83a63f916350394256@lavabit.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.198.1353574627.29569.python-list@python.org> (permalink) |
On Wed, Nov 21, 2012 at 12:49:52PM -0800, rh wrote:
>
> wheezy + "myvirtualenv" = 3.3MB
> pyramid = 92MB
$ mkvirtualenv --no-site-packages -p python2.7 pyramid
$ pip install -U distribute
$ pip install pyramid
$ du -h .virtualenvs/pyramid
22M .virtualenvs/pyramid
$ du -s .virtualenvs/pyramid/lib/python2.7/site-packages/* | sort -n | tail -n 5
728 .virtualenvs/pyramid/lib/python2.7/site-packages/pip-1.1-py2.7.egg
1556 .virtualenvs/pyramid/lib/python2.7/site-packages/setuptools
1724 .virtualenvs/pyramid/lib/python2.7/site-packages/zope
2044 .virtualenvs/pyramid/lib/python2.7/site-packages/chameleon
6312 .virtualenvs/pyramid/lib/python2.7/site-packages/pyramid
I think 22 MB are OK given the functionality Pyramid has to offer.
Just my 2 cents,
Thomas.
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: Web Frameworks Excessive Complexity Thomas Bach <thbach@students.uni-mainz.de> - 2012-11-22 09:56 +0100
csiph-web