Configure graphite on ubuntu 14.04 giving error

pip install graphite gives the following error:

 warning: no files found matching 'tools/py3tool.py'
 warning: no files found matching '*' under directory 'doc/f2py'
 warning: no previously-included files matching '*.pyc' found anywhere in distribution
 warning: no previously-included files matching '*.pyo' found anywhere in distribution
 warning: no previously-included files matching '*.pyd' found anywhere in distribution
 Downloading/unpacking piddle>=1.0.15 (from graphite)
 Could not find a version that satisfies the requirement piddle>=1.0.15 (from graphite)    (from versions: 0.2.dev.linux-x86_64, 0.3.dev) 
Cleaning up...
No distributions matching the version for piddle>=1.0.15 (from graphite)

I am using ubuntu 14.04.

+4
source share
3 answers

In Ubuntu 14.04, you can install graphite from a package.

Graphite Network Installation

sudo apt-get install -y graphite-web

Set whisper

sudo apt-get install -y python-whisper 

Set carbon

sudo apt-get install -y graphite-carbon

You can also use script : but with the exception of using

rm /etc/apache2/000-default.conf

you must use the command

sudo a2dissite 000-default
+3
source

try this for fedora systems:

pip-python install carbon whisper graphite-web

Set dependencies:

# pip-python install django django-tagging
# https://github.com/graphite-project/ceres/ (Not sure why this was needed       in spite of whisper being present)
# Check if anything else python check-dependencies.py (from a source checkout)
+1
source

The problem is that the graphite package on PyPI is not what you expect, but a dead package (?) Since 2009. Installing a graphite network, carbon and whisper with pip does what you want, for example

pip install graphite-web carbon whisper
+1
source

Source: https://habr.com/ru/post/1540181/


All Articles