-
Notifications
You must be signed in to change notification settings - Fork 1
/
run_setup
executable file
·33 lines (28 loc) · 924 Bytes
/
run_setup
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
#!/bin/bash
# Allow access to the packages.
chmod +x _python_packages
chmod +x _R_packages
apt-get update
apt-get -y install remmina remmina-plugin-rdp
apt-get -y install pycharm
apt-get -y install r-base
apt-get -y install r-base-dev
apt-get -y install openssl-devel
apt-get -y install libcurl4-openssl-dev
apt-get -y install python-pip
apt-get -y install python-dev
apt-get -y install python3-pip
apt-get -y install python3-dev
apt-get -y install python3-tk
apt-get -y install openssh-server
apt-get -y install libssh2-1-dev
apt-get -y install libssl-dev
apt-get -y install virtualenv
# Get xtra packages for seting up a vnc server
# https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-vnc-on-ubuntu-16-04
apt-get -y install xfce4
apt-get -y install xfce4-goodies
apt-get -y install tightvncserver
# Install nodejs for jupyterlabs goodness
apt-get -y install nodejs
apt-get -y install npm