You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assuming the requisite language is present on the host machine, the following language libraries can be automatically downloaded and installed using `make` (see [installation](#installation)):
36
+
37
+
*[NumPy][numpy]: general purpose array-processing library for Python (version `>= 1.8.2`)
*[pycodestyle][pycodestyle]: Python style guide checker against PEP 8 (version `>= 2.3.1`)
41
+
*[pydocstyle][pydocstyle]: Python docstring checker against PEP 257 (version `>= 2.0.0`)
42
+
40
43
The following vendor libraries can be automatically downloaded and compiled from source using `make` (see [installation](#installation)):
41
44
42
45
*[Boost][boost]: portable C++ libraries
@@ -121,14 +124,20 @@ To install development dependencies,
121
124
$ make install
122
125
```
123
126
124
-
To install vendor dependencies,
127
+
To install vendor dependencies (__optional__),
125
128
126
129
```bash
127
130
$ make install-deps
128
131
```
129
132
130
133
While vendor dependencies are not always required, installing these dependencies may aid development and unlock performance benefits, especially when developing numeric computation facilities. Note, however, that installing vendor dependencies may take considerable time (>30 minutes).
0 commit comments