Skip to content

Commit 2bc7543

Browse files
Mats-SXFlorentinD
andcommitted
Regenerate Tutorials from notebook sources
Co-authored-by: Florentin Dörre <florentin.dorre@neotechnology.com>
1 parent bd22838 commit 2bc7543

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

doc/modules/ROOT/pages/tutorials/community-detection.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ connection to the database.
2929
[source, python, role=no-test]
3030
----
3131
# Install necessary dependencies
32-
%pip graphdatascience pandas
32+
%pip install graphdatascience pandas
3333
----
3434

3535
[source, python, role=no-test]

doc/modules/ROOT/pages/tutorials/fastrp-and-knn.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ our GDS client connection to the database.
4949
[source, python, role=no-test]
5050
----
5151
# Install necessary dependencies
52-
%pip graphdatascience
52+
%pip install graphdatascience
5353
----
5454

5555
[source, python, role=no-test]

doc/modules/ROOT/pages/tutorials/gds-sessions.adoc

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ to have the `graphdatascience` Python library installed, version
2828

2929
[source, python, role=no-test]
3030
----
31-
%pip install graphdatascience==1.10a1
31+
%pip install --pre "graphdatascience>1.9"
3232
----
3333

3434
== Aura API credentials
@@ -298,6 +298,12 @@ sessions.delete("people-and-fruits")
298298
sessions.list()
299299
----
300300

301+
[source, python, role=no-test]
302+
----
303+
# Lastly, let's clean up the database
304+
gds.run_cypher("MATCH (n:Person|Fruit) DETACH DELETE n")
305+
----
306+
301307
== Conclusion
302308

303309
And we’re done! We have created a GDS Session, projected a graph, run

doc/modules/ROOT/pages/tutorials/import-sample-export-gnn.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ connection to the database.
5151
[source, python, role=no-test]
5252
----
5353
# Install necessary dependencies
54-
%pip install torch torch_scatter torch_sparse torch_geometric graphdatascience
54+
%pip install graphdatascience torch torch_scatter torch_sparse torch_geometric
5555
----
5656

5757
[source, python, role=no-test]

0 commit comments

Comments
 (0)