forked from scorelab/Bassa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·34 lines (26 loc) · 774 Bytes
/
setup.sh
File metadata and controls
executable file
·34 lines (26 loc) · 774 Bytes
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
#!/bin/bash
echo "Installing pip"
sudo apt-get install -y python3-pip
echo "pip installed"
echo "Installing setuptools"
sudo apt-get install -y python3-setuptools
echo "pip installed"
echo "Installing Aria2"
sudo apt-get install -y aria2
echo "Aria2 installed"
echo "Installing mysql-server"
sudo apt-get install -y mysql-server
echo "mysql-server installed"
echo "Installing libmysqlclient"
sudo apt-get install libmysqlclient-dev
echo "libmysqlclient installed"
echo "Installing node"
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install -y nodejs
echo "NodeJS installed"
echo "Installing bower globally"
sudo npm install -g bower
echo "bower installed"
echo "Installing gulp globally"
sudo npm install -g gulp
echo "gulp installed"