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 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
|
**********
Installing
**********
Before installing NetworkX, you need to have
`setuptools <https://pypi.python.org/pypi/setuptools>`_ installed.
Quick install
=============
Get NetworkX from the Python Package Index at
http://pypi.python.org/pypi/networkx
or install it with
::
pip install networkx
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/networkx/networkx.git#egg=networkx
More download file options are at http://networkx.github.io/download.html.
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
Mercurial source code repository.
NetworkX is a pure Python package; you don't need a compiler to build
or install it.
Source archive file
-------------------
1. Download the source (tar.gz or zip file) from
https://pypi.python.org/pypi/networkx/
or get the latest development version from
https://github.com/networkx/networkx/
2. Unpack and change directory to the source directory
(it should have the files README.txt and setup.py).
3. Run :samp:`python setup.py install` to build and install
4. (Optional) Run :samp:`nosetests` to execute the tests if you have
`nose <https://pypi.python.org/pypi/nose>`_ installed.
GitHub
------
1. Clone the networkx repostitory
git clone https://github.com/networkx/networkx.git
(see https://github.com/networkx/networkx/ for other options)
2. Change directory to :samp:`networkx`
3. Run :samp:`python setup.py install` to build and install
4. (Optional) Run :samp:`nosetests` to execute the tests if you have
`nose <https://pypi.python.org/pypi/nose>`_ installed.
If you don't have permission to install software on your
system, you can install into another directory using
the :samp:`--user`, :samp:`--prefix`, or :samp:`--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.
See http://docs.python.org/2/install/index.html#search-path for further details.
Requirements
============
Python
------
To use NetworkX you need Python 2.6, 2.7, 3.2 or later.
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 http://scipy.org/install.html for a list.
Optional packages
=================
The following are optional packages that NetworkX can use to
provide additional functions.
NumPy
-----
Provides matrix representation of graphs and is used in some graph algorithms for high-performance matrix computations.
- Download: http://scipy.org/Download
SciPy
-----
Provides sparse matrix representation of graphs and many numerical scientific tools.
- Download: http://scipy.org/Download
Matplotlib
----------
Provides flexible drawing of graphs.
- Download: http://matplotlib.sourceforge.net/
GraphViz
--------
In conjunction with either
- PyGraphviz: http://networkx.lanl.gov/pygraphviz/
or
- pydot: http://code.google.com/p/pydot/
provides graph drawing and graph layout algorithms.
- Download: http://graphviz.org/
Pyparsing
---------
http://pyparsing.wikispaces.com/
Required for pydot, GML file reading.
PyYAML
------
http://pyyaml.org/
Required for YAML format reading and writing.
Other packages
---------------
These are extra packages you may consider using with NetworkX
- IPython, interactive Python shell, http://ipython.scipy.org/
|