1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
**********
Installing
**********
Quick Install
=============
Get PyGraphviz from the Python Package Index at
http://pypi.python.org/pypi/pygraphviz
or install it with::
pip install pygraphviz
and an attempt will be made to find and install an appropriate version
that matches your operating system and Python version.
You can install the development version (at github.com) with::
pip install git://github.com/pygraphviz/pygraphviz.git#egg=pygraphviz
Get PyGraphviz from the Python Package Index at
http://pypi.python.org/pypi/pygraphviz
or install it with::
easy_install pygraphviz
and an attempt will be made to find and install an appropriate version
that matches your operating system and Python version.
Installing from Source
======================
You can install from source by downloading a source archive file
(tar.gz or zip) or by checking out the source files from the
Subversion repository.
Source Archive File
-------------------
1. Download the source (tar.gz or zip file).
2. Unpack and change directory to pygraphviz-"version"
3. Run "python setup.py install" to build and install
4. (optional) Run "python setup_egg.py nosetests" to execute the tests
Github
------
1. Clone the pygraphviz repository
git clone https://github.com/pygraphviz/pygraphviz.git
(see https://github.com/pygraphviz/pygraphviz/ for other options)
2. Change directory to "pygraphviz"
3. Run "python setup.py install" to build and install
4. (optional) Run "python setup_egg.py nosetests" to execute the tests
If you don't have permission to install software on your
system, you can install into another directory using
the --user, --prefix, or --home flags to setup.py.
For example
::
python setup.py install --prefix=/home/username/python
or
python setup.py install --home=~
or
python setup.py install --user
If you didn't install in the standard Python site-packages directory
you will need to set your PYTHONPATH variable to the alternate location.
Seehttp://docs.python.org/2/install/index.html#search-path for further details.
Requirements
============
Python
------
To use PyGraphviz you need Python version 2.6.x or 2.7.x.
PyGraphviz does not work with Python 3
The easiest way to get Python and most optional packages is to install
the Enthought Python distribution "Canopy"
https://www.enthought.com/products/canopy/
There are several other distributions that contain the key packages you need for scientific computing. See the following link for a list: http://scipy.org/install.html
Requirements
============
GraphViz
--------
To use PyGraphviz you need GraphViz version 2.16 or later.
Some versions have known bugs that have been fixed; get the latest
release available for best results.
- Official site: http://www.graphviz.org
|