Browse code

Update docs for NumPy dependency.

Fixes https://github.com/jrfonseca/xdot.py/issues/86

Jose Fonseca authored on 02/01/2021 09:32:27
Showing 2 changed files

... ...
@@ -51,7 +51,9 @@ Requirements
51 51
 
52 52
  * [PyGObject bindings for GTK3](https://pygobject.readthedocs.io)
53 53
 
54
- * [Graphviz](http://www.graphviz.org/Download.php)
54
+ * [NumPy](https://numpy.org/)
55
+
56
+ * [Graphviz](https://graphviz.org/download/)
55 57
 
56 58
 Windows users
57 59
 -------------
... ...
@@ -60,16 +62,18 @@ Download and install:
60 62
 
61 63
  * [Python for Windows](https://www.python.org/downloads/windows/)
62 64
 
63
- * [PyGObject bindings for GTK3](https://wiki.gnome.org/action/show/Projects/PyGObject)
65
+ * [PyGObject bindings for GTK3](https://pygobject.readthedocs.io/en/latest/getting_started.html#windows-getting-started)
66
+
67
+ * `pip install numpy`
64 68
 
65
- * [Graphviz for Windows](http://www.graphviz.org/Download_windows.php)
69
+ * [Graphviz for Windows](https://graphviz.org/download/)
66 70
 
67 71
 Debian/Ubuntu users
68 72
 -------------------
69 73
 
70 74
 Run:
71 75
 
72
-    apt-get install gir1.2-gtk-3.0 python3-gi python3-gi-cairo graphviz
76
+    apt install gir1.2-gtk-3.0 python3-gi python3-gi-cairo python3-numpy graphviz
73 77
 
74 78
 Usage
75 79
 =====
... ...
@@ -55,5 +55,5 @@ setup(
55 55
     ],
56 56
 
57 57
     # This is true, but doesn't work realiably
58
-    #install_requires=['gi', 'gi-cairo'],
58
+    #install_requires=['gi', 'gi-cairo', 'numpy'],
59 59
 )