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 ...@@ -46,7 +46,7 @@ AUTHOR
VERSION VERSION
0.7.3 0.7.4
LAST UPDATED LAST UPDATED
......
...@@ -6,18 +6,18 @@ OSVersion: xenial ...@@ -6,18 +6,18 @@ OSVersion: xenial
APPLICATION_NAME jupyter APPLICATION_NAME jupyter
APPLICATION_VERSION 4.4.0 APPLICATION_VERSION 4.4.0
APPLICATION_URL https://www.ubuntu.com/ APPLICATION_URL https://jupyter.org/index.html
SYSTEM_NAME comet 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 SYSTEM_URL http://www.sdsc.edu/support/user_guides/comet.html
SINGULARITY_IMAGE_SIZE 4096 SINGULARITY_IMAGE_SIZE 16384
AUTHOR_NAME Marty Kandes AUTHOR_NAME Marty Kandes
AUTHOR_EMAIL mkandes@sdsc.edu AUTHOR_EMAIL mkandes@sdsc.edu
LAST_UPDATED 20190118 LAST_UPDATED 20190516
%setup %setup
...@@ -25,7 +25,7 @@ OSVersion: xenial ...@@ -25,7 +25,7 @@ OSVersion: xenial
# Set system locale # Set system locale
export LC_ALL=C export LC_ALL=C
export PATH="/opt/miniconda3/bin:${PATH}" export PATH="/opt/anaconda3/bin:${PATH}"
%post -c /bin/bash %post -c /bin/bash
...@@ -80,52 +80,23 @@ OSVersion: xenial ...@@ -80,52 +80,23 @@ OSVersion: xenial
# bootstraping process # bootstraping process
cd /tmp cd /tmp
# Install miniconda2 # Install Anaconda2
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh wget https://repo.anaconda.com/archive/Anaconda2-2019.03-Linux-x86_64.sh
chmod +x Miniconda2-latest-Linux-x86_64.sh chmod +x Anaconda2-2019.03-Linux-x86_64.sh
./Miniconda2-latest-Linux-x86_64.sh -b -p /opt/miniconda2 ./Anaconda2-2019.03-Linux-x86_64.sh -b -p /opt/anaconda2
# Install miniconda3 # Install Anaconda3
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh wget https://repo.anaconda.com/archive/Anaconda3-2019.03-Linux-x86_64.sh
chmod +x Miniconda3-latest-Linux-x86_64.sh chmod +x Anaconda3-2019.03-Linux-x86_64.sh
./Miniconda3-latest-Linux-x86_64.sh -b -p /opt/miniconda3 ./Anaconda3-2019.03-Linux-x86_64.sh -b -p /opt/anaconda3
# Install common python(2) packages for data science and machine # Install additional python(2) packages with Anaconda2
# learning applications export PATH="/opt/anaconda2/bin:${PATH}"
export PATH="/opt/miniconda2/bin:${PATH}" conda install -y jupyterhub
conda install -y numpy
conda install -y mkl # Install additional python3 packages with Anaconda3
conda install -y mkl-include export PATH="/opt/anaconda3/bin:${PATH}"
conda install -y pandas conda install -y jupyterhub
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
# Update database for mlocate # Update database for mlocate
updatedb updatedb
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment