mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-02-17 08:50:58 -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:
|
try:
|
||||||
print("Repositories added successfully. Installing NodeJS and MongoDB.")
|
print("Repositories added successfully. Installing NodeJS and MongoDB.")
|
||||||
subprocess.check_call(["apt-get", "install",
|
subprocess.check_call(["apt-get", "install",
|
||||||
"nodejs", "mongodb-org", "-y"])
|
"nodejs", "mongodb-org",
|
||||||
|
"build-essential", "-y"])
|
||||||
except subprocess.CalledProcessError as err:
|
except subprocess.CalledProcessError as err:
|
||||||
print("Installation via apt-get failed. \nContinue "
|
print("Installation via apt-get failed. \nContinue "
|
||||||
"with manual installation, or Abort? [c/A]")
|
"with manual installation, or Abort? [c/A]")
|
||||||
|
|
Loading…
Reference in a new issue