-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6d0c3a6
commit b4eede8
Showing
4 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
octave-miscellaneous | ||
liboctave-dev | ||
octave-info | ||
octave-parallel | ||
octave-struct | ||
octave-io | ||
octave-statistics | ||
octave-optim | ||
octave-image | ||
gnuplot-x11 | ||
ghostscript |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
dependencies: | ||
- octave_kernel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Files will be stored in /tmp directory | ||
cd /tmp | ||
|
||
# Download qMRLab v2.3.0 | ||
wget -O qMRLab-2.3.0.zip https://github.com/qMRLab/qMRLab/archive/v2.3.0.zip | ||
unzip qMRLab-2.3.0.zip -d /tmp/qMRLab | ||
|
||
# Download example dataset | ||
wget -O data.zip https://osf.io/4fztd/download/ | ||
unzip data.zip -d $HOME/data | ||
|
||
# Add /tmp and subfolders in the Octave search path. | ||
octave --no-gui --eval "addpath(genpath('/tmp')); savepath;" | ||
|
||
# Install SoS kernel | ||
python -m sos_notebook.install | ||
|
||
jupyter nbextension enable --py --sys-prefix ipyleaflet | ||
|
||
git clone https://github.com/ipython-contrib/jupyter_contrib_nbextensions.git | ||
pip install -e jupyter_contrib_nbextensions | ||
jupyter contrib nbextension install --user | ||
jupyter nbextension enable hide_input/main | ||
jupyter nbextension enable init_cell/main | ||
python -m pip install statsmodels | ||
pip install jupyter_contrib_nbextensions | ||
jupyter contrib nbextension install --user | ||
jupyter nbextension enable codefolding/main | ||
jupyter nbextension enable collapsible_headings/main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
sos | ||
sos-notebook | ||
sos-python | ||
sos-bash | ||
sos-matlab==0.18.3 | ||
sos-ruby | ||
sos-sas | ||
sos-julia | ||
sos-javascript | ||
sos-r | ||
plotly | ||
plotly_express | ||
dash | ||
numpy | ||
pandas | ||
ipyleaflet | ||
plotly==4.1.0 | ||
notebook>=5.3 | ||
ipywidgets>=7.2 | ||
jupyter_plotly_dash |