Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I install Flask using PyCharm

Tags:

flask

pycharm

How do I install Flask in PyCharm?

like image 633
MAHENDRA BHISE Avatar asked Feb 02 '16 06:02

MAHENDRA BHISE


1 Answers

In pycharm, Go to: File-->Settings-->Project:project_name-->Project Interpreter.

Click on the + sign search for Flask. Choose it and click on Install package

Alternative approach: add requirements.txt to the root of your project. in it add the following line:

Flask==0.10.1

Note: keep an eye out for the version.

After you do that pycharm will prompt you to install the requirements, Just click on install requirements and if all is good you are good to go.

like image 170
ibininja Avatar answered Oct 22 '22 08:10

ibininja