Installation ============ This page provides an overview of installing the Flask Monitoring Dashboard. It starts from the very basic, but it is likely that you can directly go to `Installing the Flask Monitoring Dashboard Package <#id1>`_. Install Python -------------- You can check if you have Python installed by opening a terminal and execution the following command: .. code-block:: bash python --version It should return something like :code:`Python 3.6.3`, if not, you probably see something like :code:`bash: python3: command not found`. In the former case, you're ok. In the latter, you can follow `this link `_ to install Python. Installing a Virtual Environment (Optional) ------------------------------------------- Although you don't need a Virtual Environment, it is highly recommend. See `this page `_ to install a Virtual Environment. Configuring the Virtual Environment (Optional) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ If you have skipped the previous section, you can also skip this one (since it's optional). Once you've installed the Virtual Environment, you need to configure it. This can be done by the following command: .. code-block:: bash virtualenv ENV Or using the following command for Python3: .. code-block:: bash virtualenv --python=python3 ENV Activate the Virtual Environment (Optional) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This is the last part of the configuring the virtual environment. You should do this before you want to execute any python script/program. It is (again) one simple command: .. code-block:: bash source ENV/bin/activate Installing the Flask-MonitoringDashboard Package ------------------------------------------------- You can install the Flask-MonitoringDashboard using the command below: .. code-block:: bash pip install flask_monitoringdashboard Alternatively, you can install the Flask-MonitoringDashboard from `Github `_: .. code-block:: bash git clone https://github.com/flask-dashboard/Flask-MonitoringDashboard.git cd Flask-MonitoringDashboard python setup.py install Setup the Flask-MonitoringDashboard ------------------------------------- After you've successfully installed the package, you can use it in your code. Suppose that you've already a Flask application that looks like this: .. code-block:: python from flask import Flask app = Flask(__name__) ... @app.route('/') def index(): return 'Hello World!' if __name__ == '__main__': app.run(debug=True) You can add the extension to your Flask application with only two lines of code: .. code-block:: python ... import flask_monitoringdashboard as dashboard dashboard.bind(app) Together, it becomes: .. code-block:: python from flask import Flask import flask_monitoringdashboard as dashboard app = Flask(__name__) dashboard.bind(app) ... @app.route('/') def index(): return 'Hello World!' if __name__ == '__main__': app.run(debug=True) Further configuration --------------------- You are now ready for using the Flask-MonitoringDashboard, and you can already view the Dashboard at: `dashboard `_. However, the Dashboard offers many features which have to be configured. This is explained on `the configuration page `_.