8000 leave python2 pages as is · plotly/plotly.py@d86e19f · GitHub
[go: up one dir, main page]

Skip to content

Commit d86e19f

Browse files
committed
leave python2 pages as is
1 parent d85f523 commit d86e19f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/unconverted/python/3d-network-graph.md

Lines changed: 1 addition & 1 deletion
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 `pip install 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

doc/unconverted/python/chord-diagram.md

Lines changed: 1 addition & 1 deletion
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 `pip install 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

doc/unconverted/python/igraph-networkx-comparison.md

Lines changed: 1 addition & 1 deletion
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 `pip install 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)
0