mirror of
https://github.com/nicolargo/glances.git
synced 2024-11-28 22:55:55 +03:00
42 lines
1.4 KiB
ReStructuredText
42 lines
1.4 KiB
ReStructuredText
.. _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
|
|
features (like the Web interface, exports modules, sensors...):
|
|
|
|
.. code-block:: console
|
|
|
|
curl -o /tmp/optional-requirements.txt https://raw.githubusercontent.com/nicolargo/glances/master/optional-requirements.txt
|
|
pip install -r /tmp/optional-requirements.txt
|
|
|
|
To upgrade Glances and all its dependencies to the latests versions:
|
|
|
|
.. code-block:: console
|
|
|
|
pip install --upgrade glances
|
|
curl -o /tmp/requirements.txt https://raw.githubusercontent.com/nicolargo/glances/master/requirements.txt
|
|
pip install --upgrade /tmp/requirements.txt
|
|
curl -o /tmp/optional-requirements.txt https://raw.githubusercontent.com/nicolargo/glances/master/optional-requirements.txt
|
|
pip install --upgrade /tmp/optional-requirements.txt
|
|
|
|
For additionnal installation methods, read the official `README`_ file.
|
|
|
|
.. _psutil: https://github.com/giampaolo/psutil
|
|
.. _README: https://github.com/nicolargo/glances/blob/master/README.rst
|