forked from taichi-dev/taichi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.py
232 lines (196 loc) · 7.32 KB
/
install.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
print("* Taichi Installer")
import os
import sys
import platform
#import argparse
import subprocess
from os import environ
import platform
print(platform.architecture())
build_type = 'default'
# Utils
import struct
assert struct.calcsize('P') * 8 == 64, "Only 64-bit platforms are supported. Current platform: {}".format(struct.calcsize('P') * 8)
if sys.version_info[0] < 3 or sys.version_info[1] < 5:
print("\nPlease restart with python3. \n(Taichi supports Python 3.5+)\n")
print("Current version:", sys.version_info)
exit(-1)
def get_python_executable():
return sys.executable.replace('\\','/')
def get_shell_name():
return environ['SHELL'].split('/')[-1]
def get_shell_rc_name():
shell = get_shell_name()
if shell == 'bash':
return '~/.bashrc'
elif shell == 'zsh':
return '~/.zshrc'
else:
assert False, 'No shell rc file specified for shell "{}"'.format(shell)
def get_username():
if build_type == 'ci':
os.environ['TC_CI'] = '1'
username = 'travis'
else:
assert get_os_name() != 'win'
import pwd
username = pwd.getpwuid(os.getuid())[0]
return username
def check_command_existence(cmd):
return os.system('type {}'.format(cmd)) == 0
def execute_command(line):
print('Executing command:', line)
return os.system(line)
def get_os_name():
name = platform.platform()
if name.lower().startswith('darwin'):
return 'osx'
elif name.lower().startswith('windows'):
return 'win'
elif name.lower().startswith('linux'):
return 'linux'
assert False, "Unknown platform name %s" % name
def get_default_directory_name():
'''
osname = get_os_name()
if osname == 'linux':
username = get_username()
return '/home/{}/repos'.format(username)
elif osname == 'osx':
username = get_username()
return '/Users/{}/repos'.format(username)
else:
#Windows
return os.getcwd()
'''
return os.getcwd()
def append_to_shell_rc(line):
if get_os_name() != 'win':
execute_command('echo "{}" >> {}'.format(line, get_shell_rc_name()))
else:
print("Warning: Windows environment variable persistent edits are not supported")
def set_env(key, val, val_now=None):
if val_now is None:
val_now = val
val = str(val)
val_now = str(val_now)
append_to_shell_rc("export {}={}".format(key, val))
os.environ[key] = val_now
def get_path_separator():
if get_os_name() == 'win':
return ';'
else:
return ':'
def test_installation():
return subprocess.run([get_python_executable(), "-c", "import taichi as tc"]).returncode == 0
# (Stateful) Installer class
class Installer:
def __init__(self):
#parser = argparse.ArgumentParser()
#parser.parse_args()
self.build_type = None
def detect_or_setup_repo(self):
cwd = os.getcwd()
print("Current directory:", cwd)
if os.path.exists(os.path.join(cwd, 'include', 'taichi')):
print("Taichi source detected.")
self.repo_dir = cwd
else:
print("Cloning taichi from github...")
self.repo_dir = os.path.join(get_default_directory_name(), 'taichi')
os.chdir(get_default_directory_name())
if os.path.exists('taichi'):
print('Existing taichi installation detected.')
print('Please remove existing taichi installation in {}'.format(self.repo_dir))
exit(-1)
execute_command('git clone https://github.com/yuanming-hu/taichi.git')
os.chdir('taichi')
if os.path.exists('external/lib'):
print('Existing taichi runtimes detected.')
else:
print('Fetching taichi runtimes...')
if get_os_name() == 'win':
# On Windows, both MSVC and MinGW are supported. Assuming MSVC here
# TODO: MinGW
execute_command('git clone https://github.com/yuanming-hu/taichi_runtime external/lib -b msvc --depth 1'.format(get_os_name()))
else:
execute_command('git clone https://github.com/yuanming-hu/taichi_runtime external/lib -b {} --depth 1'.format(get_os_name()))
execute_command("git submodule update --init --recursive")
def run(self):
assert get_os_name() in ['linux', 'osx', 'win'], \
'Platform {} is not currently supported by this script. Please install manually.'.format(get_os_name())
if len(sys.argv) > 1:
self.build_type = sys.argv[1]
print('Build type: ', self.build_type)
else:
self.build_type = 'default'
global build_type
build_type = self.build_type
print('Build type = {}'.format(self.build_type))
assert self.build_type in ['default', 'ci']
check_command_existence('wget')
try:
import pip
print('pip3 installation detected')
except Exception as e:
print(e)
print('Installing pip3')
execute_command('wget https://bootstrap.pypa.io/get-pip.py')
subprocess.run([get_python_executable(), "get-pip.py", "--user"])
execute_command('rm get-pip.py')
subprocess.run([get_python_executable(), "-m", "pip", "install", "--user",
"colorama", "numpy", "Pillow", "flask", "scipy", "pybind11",
"flask_cors", "GitPython", "yapf", "pyglet", "PyQt5", "distro", "psutil"])
print("importing numpy test:")
ret = subprocess.run([get_python_executable(), "-c", "import numpy as np"])
print("ret:", ret)
execute_command('cmake --version')
if get_os_name() == 'osx':
# Check command existence
check_command_existence('git')
check_command_existence('cmake')
elif get_os_name() == 'linux':
check_command_existence('sudo')
execute_command('sudo apt-get update')
# TODO: this works for Ubuntu only
if self.build_type != 'ci':
import distro
dist = distro.id()
else:
dist = 'ubuntu'
print("Linux distribution '{}' detected", dist)
if dist == 'ubuntu':
if self.build_type == 'ci':
execute_command('sudo apt-get install -y python3-dev python3-tk')
else:
execute_command('sudo apt-get install -y python3-dev git build-essential cmake make g++ python3-tk')
elif dist == 'arch':
execute_command('sudo pacman --needed -S git cmake make gcc')
else:
print("Unsupported Linux distribution.")
self.detect_or_setup_repo()
#TODO: Make sure there is no existing Taichi ENV
set_env('TAICHI_NUM_THREADS', 8)
set_env('TAICHI_REPO_DIR', self.repo_dir)
set_env('PYTHONPATH', '$TAICHI_REPO_DIR/python/' + get_path_separator() + '$PYTHONPATH',
'{}/python/'.format(self.repo_dir) + get_path_separator() + os.environ.get('PYTHONPATH', ''))
set_env('PATH', '$TAICHI_REPO_DIR/bin/' + get_path_separator() + '$PATH', os.path.join(self.repo_dir, 'bin') + get_path_separator() + os.environ.get('PATH', ''))
os.environ['PYTHONIOENCODING'] = 'utf-8'
print('PYTHONPATH={}'.format(os.environ['PYTHONPATH']))
execute_command('echo $PYTHONPATH')
if test_installation():
print(' Successfully Installed Taichi at {}.'.format(self.repo_dir))
if get_os_name() != 'win':
if execute_command('ti') != 0:
print(' Warning: shortcut "ti" does not work.')
if execute_command('taichi') != 0:
print(' Warning: shortcut "taichi" does not work.')
print(' Please execute')
print(' source ~/.bashrc')
print(' or restart your terminal.')
else:
print(' Error: installation failed.')
exit(-1)
if __name__ == '__main__':
installer = Installer()
installer.run()