Forums

finding appFlask version?

Posting this in the forum rather than just asking via email in case anyone else has this question:

My app uses flask. Is there a way for me to see what version of flask it's using?

Related question: When I upgrade what version of python my app is using, does that affect what version of Flask it's using as well, or is that not connected?

Also, apologies for the title being weird. I was still editing, hit return in what I thought as the text entry box and apparently wound up sending this through instead and now I can't fix it. :/

Have you tried asking Google what's up? http://lmgtfy.com/?q=flask+check+version

:) Should be the first hit!

I'm not sure how to do that with PA's interface, though, and that's what I was not finding on google. Am I opening an ipython console? A venv? Something else? Is there a place I can just look in the file system?

That depends on how you've configured your web app. If you're using a virtualenv, then you can use pip from a virtualenv console. If you're not using a virtualenv, then you can use pip for the version of Python that you're using for your web app.