You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/manual_build.py
+13-23Lines changed: 13 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -35,11 +35,17 @@ def get_input(prompt):
35
35
importboto3
36
36
fromrequestsimportget
37
37
importrequests.exceptions
38
-
importmassedit
39
38
frombotocore.clientimportClientError
40
39
frombotocore.exceptionsimportProfileNotFound
41
40
exceptImportError:
42
-
print(" > You must have 'massedit, 'colored', 'boto3' and 'requests' installed. Run 'pip install boto3 colored requests massedit' or 'pip install -r requirements.txt' first")
41
+
print(" > You must have , 'colored', 'boto3' and 'requests' installed. Run 'pip install boto3 colored requests massedit' or 'pip install -r requirements.txt' first")
42
+
exit(1)
43
+
44
+
ifos.name=="nt":
45
+
print("%sSorry, Windows builds are currently not supported. Please use a UNIX system if you want to do a custom build\n%s"% (fg('yellow'), attr('reset')))
46
+
print("%s=== How to install SOCA on Window s===%s"% (fg('yellow'), attr('reset')))
47
+
print("%s1 - Download the latest release (RELEASE-<version>.tar.gz) from https://github.com/awslabs/scale-out-computing-on-aws/releases%s"% (fg('yellow'), attr('reset')))
48
+
print("%s2 - Install SOCA via https://awslabs.github.io/scale-out-computing-on-aws/install-soca-cluster/#option-2-download-the-latest-release-targz%s"% (fg('yellow'), attr('reset')))
0 commit comments