mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 23:58:02 -05:00
Adding build-essential for Ubuntu
This commit is contained in:
parent
c638090cc9
commit
a9974b2929
1 changed files with 2 additions and 1 deletions
|
@ -163,7 +163,8 @@ class LinuxSetup(SetupFactory):
|
|||
try:
|
||||
print("Repositories added successfully. Installing NodeJS and MongoDB.")
|
||||
subprocess.check_call(["apt-get", "install",
|
||||
"nodejs", "mongodb-org", "-y"])
|
||||
"nodejs", "mongodb-org",
|
||||
"build-essential", "-y"])
|
||||
except subprocess.CalledProcessError as err:
|
||||
print("Installation via apt-get failed. \nContinue "
|
||||
"with manual installation, or Abort? [c/A]")
|
||||
|
|
Loading…
Reference in a new issue