Skip to content

Commit

Permalink
add config files
Browse files Browse the repository at this point in the history
  • Loading branch information
agahkarakuzu committed Oct 26, 2019
1 parent 6d0c3a6 commit b4eede8
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 0 deletions.
11 changes: 11 additions & 0 deletions apt.txt
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
2 changes: 2 additions & 0 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
dependencies:
- octave_kernel
29 changes: 29 additions & 0 deletions postBuild
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
20 changes: 20 additions & 0 deletions requirements.txt
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

0 comments on commit b4eede8

Please sign in to comment.