1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
:orphan:
.. _inside_martinos:
Martinos Center setup
---------------------
For people within the MGH/MIT/HMS Martinos Center, MNE is available on the network.
In a terminal do:
.. code-block:: console
$ setenv PATH /usr/pubsw/packages/python/anaconda/bin:${PATH}
If you use Bash replace the previous instruction with:
.. code-block:: console
$ export PATH=/usr/pubsw/packages/python/anaconda/bin:${PATH}
Then start the python interpreter with:
.. code-block:: console
$ ipython
Then type::
>>> import mne
If you get a new prompt with no error messages, you should be good to go.
We encourage all Martinos center Python users to subscribe to the
`Martinos Python mailing list`_.
.. _Martinos Python mailing list: https://mail.nmr.mgh.harvard.edu/mailman/listinfo/martinos-python
|