i'm trying install graphviz 2.14.1 on osx 10.5.8
installed graphviz universal binary here:
http://www.ryandesign.com/graphviz/ $ svn co https://networkx.lanl.gov/svn/pygraphviz/trunk pygraphviz - fingerprint: 43:8e:fa:75:00:60:67:07:fd:04:3c:e7:bf:25:86:fd:66:b3:f6:cb (r)eject, accept (t)emporarily or accept (p)ermanently? t pygraphviz/pygraphviz pygraphviz/pygraphviz/graphviz.i pygraphviz/pygraphviz/graphviz.py pygraphviz/pygraphviz/tests pygraphviz/pygraphviz/tests/graph.txt pygraphviz/pygraphviz/tests/attributes.txt pygraphviz/pygraphviz/tests/__init__.py pygraphviz/pygraphviz/tests/test.py pygraphviz/pygraphviz/tests/layout_draw.txt pygraphviz/pygraphviz/graphviz_wrap.c pygraphviz/pygraphviz/__init__.py pygraphviz/pygraphviz/release.py pygraphviz/pygraphviz/agraph.py pygraphviz/install.txt pygraphviz/doc pygraphviz/doc/source pygraphviz/doc/source/contents.rst pygraphviz/doc/source/examples.rst pygraphviz/doc/source/static pygraphviz/doc/source/static/contents.png pygraphviz/doc/source/static/navigation.png pygraphviz/doc/source/static/sphinxdoc.css pygraphviz/doc/source/static/empty.txt pygraphviz/doc/source/tutorial.rst pygraphviz/doc/source/conf.py pygraphviz/doc/source/install.rst pygraphviz/doc/source/download.rst pygraphviz/doc/source/reference pygraphviz/doc/source/reference/news.rst pygraphviz/doc/source/reference/credits.rst pygraphviz/doc/source/reference/related.rst pygraphviz/doc/source/reference/api_notes.rst pygraphviz/doc/source/reference/history.rst pygraphviz/doc/source/reference/agraph.rst pygraphviz/doc/source/reference/legal.rst pygraphviz/doc/source/reference/faq.rst pygraphviz/doc/source/reference/index.rst pygraphviz/doc/source/templates pygraphviz/doc/source/templates/layout.html pygraphviz/doc/source/templates/indexsidebar.html pygraphviz/doc/source/templates/index.html pygraphviz/doc/sphinxext pygraphviz/doc/sphinxext/only_directives.py pygraphviz/doc/makefile pygraphviz/setup.py pygraphviz/setup_egg.py pygraphviz/setup_extra.py pygraphviz/manifest.in pygraphviz/readme.txt pygraphviz/examples pygraphviz/examples/miles.py pygraphviz/examples/simple.py pygraphviz/examples/star.py pygraphviz/examples/django_simple.py pygraphviz/examples/subgraph.py pygraphviz/examples/attributes.py pygraphviz/examples/miles_dat.txt.gz pygraphviz/setup.cfg u pygraphviz checked out revision 1947. bryan@bryan-wheelocks-macbook-pro-15 tue dec 21 07:25:18 ~/downloads $ cd pygraphviz/ bryan@bryan-wheelocks-macbook-pro-15 tue dec 21 07:25:22 ~/downloads/pygraphviz $ python setup.py install trying pkg-config /bin/sh: pkg-config: command not found /bin/sh: pkg-config: command not found trying dotneato-config failed find dotneato-config graphviz installation not found. either graphviz package missing on incomplete (binary packages graphviz-dev or graphviz-devel missing?). if think installation correct need manually change include_path , library_path variables in setup.py point correct locations of graphviz installation. current setting of library_path , include_path is: library_path=none include_path=none traceback (most recent call last): file "setup.py", line 78, in <module> raise oserror,"error locating graphviz." oserror: error locating graphviz.
here path graphviz:
$ ls -la /usr/local/lib/
drwxrwxr-x 40 root wheel 1360 dec 21 06:22 graphviz
$ python setup.py install --library_path /usr/local/lib/graphviz/
trying pkg-config /bin/sh: pkg-config: command not found /bin/sh: pkg-config: command not found trying dotneato-config failed find dotneato-config graphviz installation not found. either graphviz package missing on incomplete (binary packages graphviz-dev or graphviz-devel missing?). if think installation correct need manually change include_path , library_path variables in setup.py point correct locations of graphviz installation. current setting of library_path , include_path is: library_path=none include_path=none traceback (most recent call last): file "setup.py", line 78, in <module> raise oserror,"error locating graphviz." oserror: error locating graphviz.
i unsuccessful in finding binary packages graphviz-dev or graphviz-devel
what need installed?
it seems missing "pkg-config" package. can install homebrew
brew install pkg-config
Comments
Post a Comment