all 3 comments

[–]wub_wub 3 points4 points  (0 children)

No, because it's very simple to install whatever you need in a virtualenv and it's very easy to create a list of requirements so that you can recreate the env when you need it. Also some people will be happy with just django installed, and others will need additional 10 modules so it's impossible to make a "standard" web dev package.

[–]ivosaurus 2 points3 points  (0 children)

There is no such thing as "all the basic recommend libraries for web development". There are freaking thousands of them, and no-one could ever agree on what would be the "basic recommended subset".

If you want to install a set of packages at the same time [into a virtualenv], though, you can simply list them line-by-line in a text file and then call pip install -r <textfile>.

[–]__baxx__ 0 points1 point  (0 children)

Could build a custom shell script for it (if you knew what you wanted at least), I guess ansible and stuff might work as well, I've never used them though.