We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c56b2f commit 5740b42Copy full SHA for 5740b42
Dockerfile
@@ -163,6 +163,13 @@ USER neuro
163
164
RUN mkdir -p ~/.jupyter && echo c.NotebookApp.ip = \"0.0.0.0\" > ~/.jupyter/jupyter_notebook_config.py
165
166
+# Install dependencies and MNE master
167
+RUN conda update conda; conda install --yes --quiet numpy setuptools numpy scipy matplotlib scikit-learn nose h5py PIL pyside; pip install -q nibabel boto https://github.com/mne-tools/mne-python/archive/master.zip
168
+
169
+# Download data
170
+RUN ipython -c "import mne; print(mne.datasets.sample.data_path(verbose=False))"
171
172
173
WORKDIR /home/neuro/nipype_tutorial
174
175
CMD ["jupyter-notebook"]
0 commit comments