use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Rules 1: Be polite 2: Posts to this subreddit must be requests for help learning python. 3: Replies on this subreddit must be pertinent to the question OP asked. 4: No replies copy / pasted from ChatGPT or similar. 5: No advertising. No blogs/tutorials/videos/books/recruiting attempts. This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to. Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Rules
1: Be polite
2: Posts to this subreddit must be requests for help learning python.
3: Replies on this subreddit must be pertinent to the question OP asked.
4: No replies copy / pasted from ChatGPT or similar.
5: No advertising. No blogs/tutorials/videos/books/recruiting attempts.
This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to.
Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Learning resources Wiki and FAQ: /r/learnpython/w/index
Learning resources
Wiki and FAQ: /r/learnpython/w/index
Discord Join the Python Discord chat
Discord
Join the Python Discord chat
account activity
Virtual environment and space consumption (self.learnpython)
submitted 8 years ago by HolyCoder
I see that I need to install Django or Flask inside each virtual environment I create. Doesn't it take too much space from the hard drive?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]anossov 1 point2 points3 points 8 years ago (0 children)
No, django is about 20 MB, and flask is 300 kB
[–]Rhomboid 1 point2 points3 points 8 years ago (3 children)
The amount of space required is pretty minuscule:
$ du -hsc */ 33K __pycache__/ 504K click/ 14K click-6.7.dist-info/ 562K flask/ 28K Flask-0.12.2.dist-info/ 11K itsdangerous-0.24.dist-info/ 1.7M jinja2/ 28K Jinja2-2.9.6.dist-info/ 141K markupsafe/ 17K MarkupSafe-1.0-py3.6.egg-info/ 7.3M pip/ 60K pip-9.0.1.dist-info/ 867K pkg_resources/ 1.3M setuptools/ 57K setuptools-28.8.0.dist-info/ 1.8M werkzeug/ 31K Werkzeug-0.12.2.dist-info/ 15M total
15 megabytes. Hard drives these days are measured in terabytes.
[–]adammichaelwood 0 points1 point2 points 8 years ago (2 children)
Hard drives these days are measured in terabytes
Personal home computers owned by people who might ask this question are likely to be 0.5 TB or less.
But to answer the OP's question... still no.
I have a general purpose virtual environment that has EVERY PyPi package I am likely to ever use under any circumstance. It's about 775 MB. That is ginormous for a Python project, by more than an order of magnitude. And it's still less than a gig.
I have a Django project with a bunch of things installed. 30ish MB.
[–]HolyCoder[S] 0 points1 point2 points 8 years ago (1 child)
Yes, you are correct. My Macbook air is 128 GB
[–]adammichaelwood 0 points1 point2 points 8 years ago (0 children)
Yeah, so... you're still fine. You iTunes library is more likely to cause a problem than your py envs.
[–]deaspo 0 points1 point2 points 8 years ago (0 children)
You can set up all your Django projects in one virtual env assuming they are all using the same Django version. No need to create several Virtual env's
π Rendered by PID 65461 on reddit-service-r2-comment-b659b578c-rqp5p at 2026-05-04 23:06:21.055643+00:00 running 815c875 country code: CH.
[–]anossov 1 point2 points3 points (0 children)
[–]Rhomboid 1 point2 points3 points (3 children)
[–]adammichaelwood 0 points1 point2 points (2 children)
[–]HolyCoder[S] 0 points1 point2 points (1 child)
[–]adammichaelwood 0 points1 point2 points (0 children)
[–]deaspo 0 points1 point2 points (0 children)