@@ -33,17 +33,25 @@ machine. These can be installed using
33
33
```
34
34
$ pip install pyzmq
35
35
```
36
+ You will also need [ Numpy] ( http://www.numpy.org/ ) , which can be installed
37
+ using:
38
+
39
+ ```
40
+ $ pip install numpy
41
+ ```
36
42
37
43
If you intend to use the Matlab magic extension, you'll also need
38
- [ IPython] ( http://ipython.org/install.html ) , as well as
39
- [ Scipy] ( http://scipy.org/ ) and [ Numpy] ( http://www.numpy.org/ ) . These can be
40
- installed from PyPI, or using distributions such as
41
- [ Anaconda] ( https://store.continuum.io/cshop/anaconda/ ) or [ Enthought
42
- Canopy] ( https://store.enthought.com/downloads/ )
44
+ [ IPython] ( http://ipython.org/install.html ) .
43
45
44
46
Note thatIPython notebooks also depend on ` pyzmq ` so if you have IPython notebooks
45
47
installed, you likely have ` pyzmq ` already.
46
48
49
+ Finally, if you want to handle sparse arrays, you will need to install
50
+ [ Scipy] ( http://scipy.org/ ) . This can also be installed from PyPI, or using
51
+ distributions such as [ Anaconda] ( https://store.continuum.io/cshop/anaconda/ ) or
52
+ [ Enthought Canopy] ( https://store.enthought.com/downloads/ )
53
+
54
+
47
55
## Usage
48
56
49
57
To use the pymatbridge you need to connect your python interpreter to a Matlab
@@ -226,7 +234,7 @@ For Matlab:
226
234
227
235
cd messenger
228
236
# edit local.cfg in the directory for your platform
229
- python make.py
237
+ python make.py matlab
230
238
cd ..
231
239
python setup.py install
232
240
@@ -235,7 +243,7 @@ For Octave:
235
243
236
244
cd messenger/octave
237
245
# edit local_octave.cfg in the directory for your platform
238
- python make_octave .py
246
+ python make .py octave
239
247
cd ..
240
248
python setup.py
241
249
0 commit comments