How to Install Flask on Linux? Last Updated : 23 Jul, 2025 Comments Improve Suggest changes Like Article Like Report Flask is a python module. It can work with python only. It is a web-developing framework. A web framework is a collection of libraries and modules. Frameworks are used for developing web platforms. Flask is such a type of web application framework. It is completely written in Python language. Unlike Django, it is only written in Python. As a new user Flask is to be used. As it is easier to handle. As it is only written in Python, before installing Flask on the machine, Python should be installed previously. Also, Python Pip should be installed. Nowadays, the latest version of Python Pip is already installed. Features of Flask: Flask is easy to use & easily understandable for new users in Web Framework.Flask can be used as any third-party plugin extension.It is also used for prototyping purposes. Pre-Requisites: Python3 Python3-pip Downloading and Installation of Flask: Step 1: At first, the terminal of the Linux operating system should be opened. Then the following command should be run. This command will install Flask in the machine according to the machine configuration. Wait for some time till the process is completed. It will take the help of Pip of Python to install Flask on the machine. pip install flask Step 2: After successfully installing the Flask in the machine a special command should be run. This command is only executable by Linux operating system. This command will show the installed Flask version in the machine. Hence, the process is completed successfully in Linux. flask --version Comment More infoAdvertise with us Next Article How to Install Flask in Kaggle S sounetraghosal2000 Follow Improve Article Tags : How To Installation Guide how-to-install Similar Reads How to Install python-gadfly in Linux? In this article, we will be looking at the stepwise procedure to install the python-gadfly for Python in Linux. Gadfly is a relational database management system written in Python. Gadfly is a collection of Python modules that provides relational database functionality entirely implemented in Python 2 min read How to Install Dash in Python on Linux? Dash library in Python is a framework developed to create custom web analytic applications. Dash library has a custom user interface which makes it beat for building data analysis applications. Dash library is a cross-platformed library that works on various operating systems like Windows, Linux, an 1 min read How to Install Python-arrow on Linux? Arrow is a Python library for performing tasks with date and time. It presents a sensible and human-friendly approach to creating, manipulating, formatting, and converting dates, times, and timestamps. Arrow allows easy creation of date and time instances with timezone awareness. So, in this article 1 min read How to Install Python docutils on Linux? Docutils is an open-source text processing system. It is written in Python language. It is used to process simple text or plaintext documents into some useful formats like LaTex, HTML, OpenDocument, XML, etc. It is easy to use and easy to read. It is available for operating systems like, Windows, ma 2 min read How to Install Flask in Kaggle Flask is a lightweight web framework for Python that is commonly used for building web applications and APIs. Although Kaggle is primarily focused on data science and machine learning, we may still want to install Flask in a Kaggle notebook for purposes such as developing and testing web services or 3 min read How to Install wxPython on Linux? wxPython is a Python module. It is an open-source module that allows its users to create a highly functional, cross-platform graphical user interface (GUI). It is a set of extension modules that wrap the GUI components of the wxPython library. In this article, we will look into the process of instal 1 min read Like