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 02933472b03d91213388994f0e394941e857a999 Author: Alexandre Gramfort <[email protected]> Date: Wed Jul 25 10:46:01 2012 +0200 DOC : document python setup.py install --user --- README.rst | 6 ++++-- doc/source/getting_started.rst | 4 ++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 8af001d..aef26cb 100644 --- a/README.rst +++ b/README.rst @@ -17,11 +17,13 @@ of the latest code: http://github.com/mne-tools/mne-python/archives/master Installing ========== -As any Python packages, to install MNE-Python, simply do:: +As any Python packages, to install MNE-Python, go in the mne-python source code directory and do:: python setup.py install -in the source code directory. +or if you don't have admin access to your python setup (permission denied when install) use:: + + python setup.py install --user You can also install the latest release with easy_install:: diff --git a/doc/source/getting_started.rst b/doc/source/getting_started.rst index 5ef3763..da31365 100644 --- a/doc/source/getting_started.rst +++ b/doc/source/getting_started.rst @@ -65,6 +65,10 @@ Then from the mne-python folder (containing a setup.py file) you can install wit python setup.py install +or if you don't have admin access to your python setup (permission denied when install) use:: + + python setup.py install --user + You can also install the latest release with easy_install:: easy_install -U mne -- 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
