Skip to content

Commit cf64bca

Browse files
authored
Merge pull request #4383 from plotly/igraph-updates
Update python-igraph references
2 parents 3ad1fb0 + 16d3110 commit cf64bca

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Diff for: doc/python/tree-plots.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jupyter:
3535

3636
#### Set Up Tree with [igraph](http://igraph.org/python/)
3737

38-
Install igraph with `pip install python-igraph`.
38+
Install igraph with `pip install igraph`.
3939

4040
```python
41-
!pip install python-igraph
41+
!pip install igraph
4242
```
4343

4444
```python

Diff for: doc/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ scipy==1.3.1
1010
patsy==0.5.1
1111
numpy==1.19.5
1212
plotly-geo
13-
python-igraph
13+
igraph
1414
geopandas==0.8.1
1515
pyshp==2.1.2
1616
shapely==1.7.1

Diff for: doc/unconverted/python/3d-network-graph.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Plotly's Python library is free and open source! [Get started](https://plot.ly/p
3333

3434

3535
We define our graph as an `igraph.Graph` object. [Python `igraph`](http://igraph.org/python/)
36-
is a library for high-performance graph generation and analysis. Install the Python library with `sudo pip install python-igraph`.
36+
is a library for high-performance graph generation and analysis. Install the Python library with `sudo pip install igraph`.
3737

3838
```python
3939
import igraph as ig

Diff for: doc/unconverted/python/chord-diagram.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Namely, if the distance(`V[i], V[j]`), belongs to the $K^{th}$ interval associat
5555

5656
We processed data provided by [Eurovision Song Contest](http://www.eurovision.tv/page/history/by-year/contest?event=2083#Scoreboard), and saved the corresponding graph in a `gml` file. Now we can read the `gml` file and define an [`igraph.Graph`](http://igraph.org/python/) object.
5757

58-
Install the Python libraries with `sudo pip install python-igraph` and `sudo pip install networkx`.
58+
Install the Python libraries with `sudo pip install igraph` and `sudo pip install networkx`.
5959

6060
```python
6161
import igraph as ig

Diff for: doc/unconverted/python/igraph-networkx-comparison.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Plotly's Python library is free and open source! [Get started](https://plot.ly/p
3131

3232

3333
#### Comparison
34-
In this tutorial we plot the same network - the coauthorship network of scientists working on network theory and experiment - first as an `igraph.Graph` object, with the Kamada-Kawai layout, and then as a `networkx.Graph`, with the Fruchterman-Reingold layout. Install the Python libraries with `sudo pip install python-igraph` and `sudo pip install networkx`.
34+
In this tutorial we plot the same network - the coauthorship network of scientists working on network theory and experiment - first as an `igraph.Graph` object, with the Kamada-Kawai layout, and then as a `networkx.Graph`, with the Fruchterman-Reingold layout. Install the Python libraries with `sudo pip install igraph` and `sudo pip install networkx`.
3535

3636
The graph data are read from a gml file, posted at UC Irvine [Network Data Repository](http://networkdata.ics.uci.edu/data/netscience/netscience.gml):
3737

0 commit comments

Comments
 (0)