> I am not an idiot, but assume that for anything related to python I am > ignorant but read well.
I love this sentence and might use it in the future. :-) > So, I get to the point of doing python setup.py develop, and it chugs > along, then stops trying to download Flask. Specifically, I get the > following error: > > Searching for Flask>=0.9 > Reading http://pypi.python.org/simple/Flask/ > Reading http://github.com/mitsuhiko/flask/ > Best match: Flask 0.9 > Downloading > http://pypi.python.org/packages/source/F/Flask/Flask-0.9.tar.gz#md5=4a89ef2b3ab0f151f781182bd0cc8933 > error: MD5 validation failed for Flask-0.9.tar.gz; possible download > problem? > > I presume that the md5 is an expected hash value for the downloaded file, > but I can't figure out where it's getting that value or why it might be > failing. Huh, I don't remember ever seeing that before. Presumably it pulls it off PyPI, where it's linked from the https://pypi.python.org/pypi/Flask/ page—search for "md5". I just tried python setup.py develop in a new virtualenv and wasn't able to reproduce your problem. If you're still having it, try installing everything with pip first, manually, before doing setup.py develop: pip install -r requirements.txt python setup.py develop Maybe that will work better/differently. Let me know if you keep having trouble. I'm on IRC. Cheers, Erik _______________________________________________ dev-static-analysis mailing list [email protected] https://lists.mozilla.org/listinfo/dev-static-analysis
