Skip to content
Snippets Groups Projects
Commit 8285e38a authored by Marty Kandes's avatar Marty Kandes
Browse files

naked-singularity-v0.7.4 :: updated jupyter-cpu.def for comet;

jupyter-cpu.def now installs jupyterhub (to support jupyter lab) as well
as the default anaconda2/3 software distributions (instead of the
default miniconda2/3 software distributions); note, however, the
anaconda3/python3 environment is setup by default.
parent 86b2a6ab
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,7 @@ AUTHOR
VERSION
0.7.3
0.7.4
LAST UPDATED
......
......@@ -6,18 +6,18 @@ OSVersion: xenial
APPLICATION_NAME jupyter
APPLICATION_VERSION 4.4.0
APPLICATION_URL https://www.ubuntu.com/
APPLICATION_URL https://jupyter.org/index.html
SYSTEM_NAME comet
SYSTEM_SINGULARITY_VERSION 2.5.2
SYSTEM_SINGULARITY_VERSION 2.6.1
SYSTEM_URL http://www.sdsc.edu/support/user_guides/comet.html
SINGULARITY_IMAGE_SIZE 4096
SINGULARITY_IMAGE_SIZE 16384
AUTHOR_NAME Marty Kandes
AUTHOR_EMAIL mkandes@sdsc.edu
LAST_UPDATED 20190118
LAST_UPDATED 20190516
%setup
......@@ -25,7 +25,7 @@ OSVersion: xenial
# Set system locale
export LC_ALL=C
export PATH="/opt/miniconda3/bin:${PATH}"
export PATH="/opt/anaconda3/bin:${PATH}"
%post -c /bin/bash
......@@ -80,52 +80,23 @@ OSVersion: xenial
# bootstraping process
cd /tmp
# Install miniconda2
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh
chmod +x Miniconda2-latest-Linux-x86_64.sh
./Miniconda2-latest-Linux-x86_64.sh -b -p /opt/miniconda2
# Install miniconda3
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
chmod +x Miniconda3-latest-Linux-x86_64.sh
./Miniconda3-latest-Linux-x86_64.sh -b -p /opt/miniconda3
# Install common python(2) packages for data science and machine
# learning applications
export PATH="/opt/miniconda2/bin:${PATH}"
conda install -y numpy
conda install -y mkl
conda install -y mkl-include
conda install -y pandas
conda install -y matplotlib
conda install -y ipython
conda install -y ipython-notebook
conda install -y jupyter
conda install -y sympy
conda install -y nose
conda install -y scikit-learn
conda install -y scikit-image
conda install -y nltk
conda install -y statsmodels
conda install -y opencv
# Install common python3 packages for data science and machine
# learning applications
export PATH="/opt/miniconda3/bin:${PATH}"
conda install -y numpy
conda install -y mkl
conda install -y mkl-include
conda install -y pandas
conda install -y matplotlib
conda install -y ipython
conda install -y jupyter
conda install -y sympy
conda install -y nose
conda install -y scikit-learn
conda install -y scikit-image
conda install -y nltk
conda install -y statsmodels
conda install -y opencv
# Install Anaconda2
wget https://repo.anaconda.com/archive/Anaconda2-2019.03-Linux-x86_64.sh
chmod +x Anaconda2-2019.03-Linux-x86_64.sh
./Anaconda2-2019.03-Linux-x86_64.sh -b -p /opt/anaconda2
# Install Anaconda3
wget https://repo.anaconda.com/archive/Anaconda3-2019.03-Linux-x86_64.sh
chmod +x Anaconda3-2019.03-Linux-x86_64.sh
./Anaconda3-2019.03-Linux-x86_64.sh -b -p /opt/anaconda3
# Install additional python(2) packages with Anaconda2
export PATH="/opt/anaconda2/bin:${PATH}"
conda install -y jupyterhub
# Install additional python3 packages with Anaconda3
export PATH="/opt/anaconda3/bin:${PATH}"
conda install -y jupyterhub
# Update database for mlocate
updatedb
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment