How to check python flask version?

by aliyah.nikolaus , in category: Python , 2 years ago

How to check python flask version?

Facebook Twitter LinkedIn Telegram Whatsapp

2 answers

Member

by kavon , 2 years ago

@aliyah.nikolaus you can use flask.__version__ to check the installed python flask version:


1
2
3
import flask

flask.__version__
by dmitrypro77 , 2 years ago

@aliyah.nikolaus I think you can run the terminal command to check python flask version as well:


1
flask --version