Permalink
Browse files
More detailed directions for installing igraph.
- Loading branch information...
|
|
@@ -1,4 +1,6 @@ |
|
|
var searchData=
|
|
|
[
|
|
|
['directory',['DIRECTORY',['../graphpass_8h.html#ac41a6011e0562d1e721800be58d3fda6',1,'graphpass.h']]]
|
|
|
['filter_2ec',['filter.c',['../filter_8c.html',1,'']]],
|
|
|
['filter_5fgraph',['filter_graph',['../filter_8c.html#a51f8ed6b110fdcbe5cbf9b0adfde8df4',1,'filter.c']]],
|
|
|
['fix_5fpercentile',['fix_percentile',['../filter_8c.html#adccfbd3b2182a02f3ee87f0f50d874bb',1,'filter.c']]]
|
|
|
];
|
|
|
@@ -1,4 +1,5 @@ |
|
|
var searchData=
|
|
|
[
|
|
|
['methods',['METHODS',['../graphpass_8h.html#ab1522dca76d0be83c1d064da24586de2',1,'graphpass.h']]]
|
|
|
['push',['push',['../reports_8c.html#acdcdf9fdd29aed797e4fa517f62bf4d1',1,'reports.c']]],
|
|
|
['pushrank',['pushRank',['../reports_8c.html#aec4d3b9cbca17fd01a00c2de534eae26',1,'reports.c']]]
|
|
|
];
|
|
|
@@ -1,5 +1,4 @@ |
|
|
var searchData=
|
|
|
[
|
|
|
['quickrun',['QUICKRUN',['../graphpass_8h.html#aa9c53081121851343774a84b3793d90e',1,'graphpass.h']]],
|
|
|
['quickrun_2eh',['quickrun.h',['../quickrun_8h.html',1,'']]]
|
|
|
['unity_5fstorage_5ft',['UNITY_STORAGE_T',['../struct_u_n_i_t_y___s_t_o_r_a_g_e___t.html',1,'']]]
|
|
|
];
|
|
|
@@ -1,6 +1,5 @@ |
|
|
var searchData=
|
|
|
[
|
|
|
['gexf_2eh',['gexf.h',['../gexf_8h.html',1,'']]],
|
|
|
['graphpass_2ec',['graphpass.c',['../graphpass_8c.html',1,'']]],
|
|
|
['graphpass_2eh',['graphpass.h',['../graphpass_8h.html',1,'']]]
|
|
|
['gexf_2ec',['gexf.c',['../gexf_8c.html',1,'']]],
|
|
|
['graphpass_2ec',['graphpass.c',['../graphpass_8c.html',1,'']]]
|
|
|
];
|
|
@@ -23,10 +23,35 @@ tar -xvzf igraph-0.7.1.tar.gz |
|
|
cd igraph-0.7.1.tar.gz
|
|
|
./configure
|
|
|
make
|
|
|
make install
|
|
|
sudo make install
|
|
|
ldconfig
|
|
|
```
|
|
|
|
|
|
You can test that gcc and igraph have been installed properly by using:
|
|
|
|
|
|
```
|
|
|
gcc -ligraph
|
|
|
```
|
|
|
|
|
|
If you get `undefined reference to 'main'` that means linux is looking for
|
|
|
graphpass and you are ready to go.
|
|
|
|
|
|
If you get `cannot find -ligraph` then something went wrong with the install.
|
|
|
Check through the logs to see what failed to install.
|
|
|
|
|
|
|
|
|
If desired remove igraph directory:
|
|
|
|
|
|
```
|
|
|
cd ..
|
|
|
rm -rf igraph-0.7.1.tar.gz
|
|
|
```
|
|
|
|
|
|
Go to preferred install directory, for example:
|
|
|
|
|
|
```
|
|
|
cd /Users/username/
|
|
|
```
|
|
|
|
|
|
For MacOS:
|
|
|
|
|
@@ -60,6 +85,9 @@ cd graphpass |
|
|
make
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
Once compiled use the following command:
|
|
|
0 comments on commit
8e887e1