This is an automated email from the git hooks/post-receive script. yoh pushed a commit to tag 0.4 in repository python-mne.
commit b15d6f49696c419ce7c636b81038835939f24dcb Author: Alexandre Gramfort <[email protected]> Date: Mon Apr 23 18:52:30 2012 +0200 DOC : update install doc --- README.rst | 4 ++++ doc/source/getting_started.rst | 26 +++++++++++++++++++++++++- doc/source/python_tutorial.rst | 5 +++++ 3 files changed, 34 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 34676b1..8af001d 100644 --- a/README.rst +++ b/README.rst @@ -31,6 +31,10 @@ or with pip:: pip install mne --upgrade +or for the latest development version (the most up to date):: + + pip install -e git+https://github.com/mne-tools/mne-python#egg=mne-dev + Workflow to contribute ========================= diff --git a/doc/source/getting_started.rst b/doc/source/getting_started.rst index 8ae1014..5ef3763 100644 --- a/doc/source/getting_started.rst +++ b/doc/source/getting_started.rst @@ -53,7 +53,31 @@ To test that everything works properly, open up IPython:: Although all of the examples in this documentation are in the style of the standard Python interpreter, the use of IPython is highly -recommended. Then type:: +recommended. + +Now that you have a working Python environment you can install MNE. + +You can manually get the latest version of the code at: + +https://github.com/mne-tools/mne-python + +Then from the mne-python folder (containing a setup.py file) you can install with:: + + python setup.py install + +You can also install the latest release with easy_install:: + + easy_install -U mne + +or with pip:: + + pip install mne --upgrade + +For the latest development version (the most up to date):: + + pip install -e git+https://github.com/mne-tools/mne-python#egg=mne-dev + +To check that everything went fine, in ipython, type:: >>> import mne diff --git a/doc/source/python_tutorial.rst b/doc/source/python_tutorial.rst index 52cd3de..1377d4d 100644 --- a/doc/source/python_tutorial.rst +++ b/doc/source/python_tutorial.rst @@ -56,6 +56,11 @@ Get the code pip install mne --upgrade + For the latest development version (the most up to date):: + + pip install -e git+https://github.com/mne-tools/mne-python#egg=mne-dev + + From raw data to evoked data ---------------------------- -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/python-mne.git _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
