-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSingularity
More file actions
52 lines (37 loc) · 951 Bytes
/
Singularity
File metadata and controls
52 lines (37 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#-----------------------
#updates:
# 2019-06-05
# pytorch 1.1.0
#-----------------------
Bootstrap: docker
#Python version: 3.6.4
From: continuumio/anaconda3:5.1.0
%post
export PATH=/opt/conda/bin:$PATH
#update
apt-get update
apt-get install -y tree
apt-get install -y vim
conda update conda
pip install --upgrade pip
##tensorflow
#conda install tensorflow-gpu==1.13.0
conda install tensorflow-gpu==1.14.0
# conda install -c anaconda scikit-image==0.14.2
#pytorch
conda install -c pytorch pytorch==1.1.0 torchvision==0.3.0 cudatoolkit=9.0
#theano
#apt-get install -y build-essential
#conda install -c conda-forge theano==1.0.4
#conda install mkl-service
#opencv
conda install -c anaconda opencv==3.4.2
#scikit-learn
conda install -c anaconda scikit-learn==0.20.3
#simpleitk
conda install -c simpleitk simpleitk==1.2.0
#niftynet
conda install -c anaconda pyyaml==3.13
pip install niftynet==0.5.0
#niwidgets
pip install niwidgets==0.1.3