File tree 2 files changed +15
-7
lines changed
2 files changed +15
-7
lines changed Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ From: tf2.sif
26
26
npm --version
27
27
28
28
# 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
31
31
pip install ipympl
32
32
33
33
# jupyterlab extensions
@@ -36,11 +36,11 @@ From: tf2.sif
36
36
jupyter labextension install @lckr/jupyterlab_variableinspector
37
37
jupyter labextension install @jupyter-widgets/jupyterlab-manager jupyter-matplotlib
38
38
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
40
41
41
42
# 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
44
44
45
45
# jupyterlab extensions config
46
46
# Use with Git SSH; Does not work with HTTPS yet
Original file line number Diff line number Diff line change 1
1
Bootstrap: docker
2
- From: tensorflow/tensorflow:2.1 .0-gpu-py3
2
+ From: tensorflow/tensorflow:2.2 .0-gpu
3
3
4
4
%post
5
5
@@ -19,8 +19,8 @@ From: tensorflow/tensorflow:2.1.0-gpu-py3
19
19
pip install tensorflow-hub
20
20
21
21
# with only pip install opencv will fail on import unable to link libs
22
+ apt update && apt install -y ffmpeg libsm6 libxext6 libxrender-dev
22
23
pip install opencv-python
23
- apt update && apt install -y libsm6 libxext6 libxrender-dev
24
24
25
25
# Computer Vision
26
26
pip install sklearn scikit-image
@@ -31,6 +31,7 @@ From: tensorflow/tensorflow:2.1.0-gpu-py3
31
31
apt update && apt install -y graphviz
32
32
pip install pydot
33
33
pip install seaborn
34
+ pip install -U tensorboard_plugin_profile
34
35
35
36
# Data Processing
36
37
pip install pandas
@@ -50,6 +51,13 @@ From: tensorflow/tensorflow:2.1.0-gpu-py3
50
51
apt update && apt install -y tmux
51
52
apt install -y sysstat
52
53
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
+
53
61
%labels
54
62
55
63
Author Saravanabalagi Ramachandran
You can’t perform that action at this time.
0 commit comments