-
Notifications
You must be signed in to change notification settings - Fork 106
/
install_dependencies.py
executable file
·73 lines (54 loc) · 1.97 KB
/
install_dependencies.py
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env python
from optparse import OptionParser
import os
import subprocess
import sys
################################################################################
# install_dependencies.py
#
# Download and install Basset dependencies.
################################################################################
################################################################################
# main
################################################################################
def main():
usage = 'usage: %prog [options] arg'
parser = OptionParser(usage)
(options,args) = parser.parse_args()
# confirm luarocks
luarocks_which = subprocess.check_output('which luarocks', shell=True)
if luarocks_which == '':
print >> sys.stderr, 'Please install Torch7 first.'
exit(1)
############################################################
# luarocks database
############################################################
# install luafilesystem
cmd = 'luarocks install luafilesystem'
subprocess.call(cmd, shell=True)
# install dpnn
cmd = 'luarocks install dpnn'
subprocess.call(cmd, shell=True)
# install inn
cmd = 'luarocks install inn'
subprocess.call(cmd, shell=True)
# install dp
cmd = 'luarocks install dp'
subprocess.call(cmd, shell=True)
############################################################
# luarocks from github
############################################################
os.chdir('src')
# install torch-hdf5
cmd = 'git clone https://github.com/davek44/torch-hdf5.git'
subprocess.call(cmd, shell=True)
os.chdir('torch-hdf5')
cmd = 'luarocks make'
subprocess.call(cmd, shell=True)
os.chdir('..')
os.chdir('..')
################################################################################
# __main__
################################################################################
if __name__ == '__main__':
main()