2016-09-03 09:48:38 +03:00
|
|
|
.. _install:
|
|
|
|
|
|
|
|
Install
|
|
|
|
=======
|
|
|
|
|
|
|
|
Glances is on ``PyPI``. By using PyPI, you are sure to have the latest
|
|
|
|
stable version.
|
|
|
|
|
|
|
|
To install, simply use ``pip``:
|
|
|
|
|
|
|
|
.. code-block:: console
|
|
|
|
|
|
|
|
pip install glances
|
|
|
|
|
|
|
|
*Note*: Python headers are required to install `psutil`_. For example,
|
|
|
|
on Debian/Ubuntu you need to install first the *python-dev* package.
|
|
|
|
For Fedora/CentOS/RHEL install first *python-devel* package. For Windows,
|
|
|
|
just install PsUtil from the binary installation file.
|
|
|
|
|
|
|
|
You can also install the following libraries in order to use optional
|
2017-03-12 20:52:17 +03:00
|
|
|
features (like the Web interface, export modules...):
|
2016-09-03 09:48:38 +03:00
|
|
|
|
|
|
|
.. code-block:: console
|
|
|
|
|
2017-03-12 20:52:17 +03:00
|
|
|
pip install glances[action,browser,cloud,cpuinfo,chart,docker,export,folders,gpu,ip,raid,snmp,web,wifi]
|
2016-09-03 09:48:38 +03:00
|
|
|
|
2017-03-12 20:52:17 +03:00
|
|
|
To upgrade Glances and all its dependencies to the latest versions:
|
2016-09-03 09:48:38 +03:00
|
|
|
|
|
|
|
.. code-block:: console
|
|
|
|
|
|
|
|
pip install --upgrade glances
|
2017-03-12 20:52:17 +03:00
|
|
|
pip install --upgrade psutil
|
|
|
|
pip install --upgrade glances[...]
|
2016-09-03 09:48:38 +03:00
|
|
|
|
2017-03-12 20:52:17 +03:00
|
|
|
For additional installation methods, read the official `README`_ file.
|
2016-09-03 09:48:38 +03:00
|
|
|
|
|
|
|
.. _psutil: https://github.com/giampaolo/psutil
|
|
|
|
.. _README: https://github.com/nicolargo/glances/blob/master/README.rst
|