← Back to team overview

graphite-dev team mailing list archive

[Question #280861]: Literally cannot even install graphite. Vagrant + Ubuntu 14.04

 

New question #280861 on Graphite:
https://answers.launchpad.net/graphite/+question/280861

Following the docs for installation as best I can, the following ansible playbook fails to install carbon in the right location (/opt/graphite):

---

- name: install apt dependencies
  apt: name={{item}} state=present
  with_items:
    - python-cairo
    - fontconfig

- name: install carbon
  pip: name={{item}}
  with_items:
    - Django
    - django-tagging
    - pytz
    - whisper
    - carbon
    - graphite-web

This is the output of pip freeze:

apt-xapian-index==0.45
carbon==0.9.15
chardet==2.0.1
Cheetah==2.4.4
cloud-init==0.7.5
configobj==4.7.2
Django==1.9.1
django-tagging==0.4
graphite-web==0.9.15
httplib2==0.8
jsonpatch==1.3
jsonpointer==1.0
keyring==3.5
Landscape-Client==14.12
launchpadlib==1.10.2
lazr.restfulclient==0.13.3
lazr.uri==1.0.3
oauth==1.0.1
PAM==0.4.2
prettytable==0.7.2
pycrypto==2.6.1
pycurl==7.19.3
pygobject==3.12.0
pyOpenSSL==0.13
pyserial==2.6
python-apt===0.9.3.5ubuntu2
python-debian===0.1.21-nmu2ubuntu2
pytz==2015.7
PyYAML==3.10
requests==2.2.1
SecretStorage==2.0.0
simplejson==3.3.1
six==1.5.2
ssh-import-id==3.21
Twisted==15.5.0
Twisted-Core==13.2.0
Twisted-Names==13.2.0
Twisted-Web==13.2.0
txAMQP==0.6.2
urllib3==1.7.1
virtualenv==13.1.2
wadllib==1.3.2
wheel==0.26.0
whisper==0.9.15
zope.interface==4.0.5

As you can see, carbon is installed.  However, when I open a python interpreter, `import carbon` throws an ImportError.

I also tried using a virtualenv as I detailed in the comments to this issue on github: https://github.com/graphite-project/carbon/issues/514

Really no idea where to go from here.  Are the docs out of date?

-- 
You received this question notification because your team graphite-dev
is an answer contact for Graphite.