Skip to content

Commit fdc924d

Browse files
Update files
1 parent a25e4df commit fdc924d

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

src/jupyterlab.def

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ From: tf2.sif
2626
npm --version
2727

2828
# jupyterlab and other pip dependencies
29-
pip install "jupyterlab>=1,<2"
30-
pip install "nbdime<2" jupyterlab-git
29+
pip install jupyterlab
30+
pip install nbdime jupyterlab-git
3131
pip install ipympl
3232

3333
# jupyterlab extensions
@@ -36,11 +36,11 @@ From: tf2.sif
3636
jupyter labextension install @lckr/jupyterlab_variableinspector
3737
jupyter labextension install @jupyter-widgets/jupyterlab-manager jupyter-matplotlib
3838
jupyter labextension install @jupyterlab/toc
39-
# jupyter labextension install @krassowski/jupyterlab_go_to_definition #v2.0
39+
jupyter labextension install @krassowski/jupyterlab_go_to_definition
40+
jupyter labextension install jupyterlab-drawio
4041

4142
# Older extensions (Supports only jupyterlab v1)
42-
jupyter labextension install @krassowski/jupyterlab_go_to_definition@0.7.1
43-
jupyter labextension install jupyterlab-drawio
43+
# jupyter labextension install @krassowski/jupyterlab_go_to_definition@0.7.1
4444

4545
# jupyterlab extensions config
4646
# Use with Git SSH; Does not work with HTTPS yet

src/tf2.def

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Bootstrap: docker
2-
From: tensorflow/tensorflow:2.1.0-gpu-py3
2+
From: tensorflow/tensorflow:2.2.0-gpu
33

44
%post
55

@@ -19,8 +19,8 @@ From: tensorflow/tensorflow:2.1.0-gpu-py3
1919
pip install tensorflow-hub
2020

2121
# with only pip install opencv will fail on import unable to link libs
22+
apt update && apt install -y ffmpeg libsm6 libxext6 libxrender-dev
2223
pip install opencv-python
23-
apt update && apt install -y libsm6 libxext6 libxrender-dev
2424

2525
# Computer Vision
2626
pip install sklearn scikit-image
@@ -31,6 +31,7 @@ From: tensorflow/tensorflow:2.1.0-gpu-py3
3131
apt update && apt install -y graphviz
3232
pip install pydot
3333
pip install seaborn
34+
pip install -U tensorboard_plugin_profile
3435

3536
# Data Processing
3637
pip install pandas
@@ -50,6 +51,13 @@ From: tensorflow/tensorflow:2.1.0-gpu-py3
5051
apt update && apt install -y tmux
5152
apt install -y sysstat
5253

54+
# Install pid_usage
55+
apt install wget
56+
wget https://github.com/saravanabalagi/pid_usage/releases/download/0.1/pid_usage.tar.gz
57+
tar -xzf pid_usage.tar.gz
58+
mv pid_usage /bin
59+
rm pid_usage.tar.gz
60+
5361
%labels
5462

5563
Author Saravanabalagi Ramachandran

0 commit comments

Comments
 (0)